.pricelist-prices-queue-table-container {
    width: 550px;
    min-height: 200px;
}

.pricelist-prices-queue-table {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
}

.pricelist-prices-queue-table-header {
    background-color: #c1c1c1;
}

.pricelist-prices-queue-table-header th {
    padding: 10px;
    text-align: left;
    border-bottom: 2px solid #ddd;
}

.pricelist-prices-queue-table-row {
    border-bottom: 1px solid #ddd;
}

.pricelist-prices-queue-table-row td {
    padding: 10px;
}

.pricelist-prices-queue-btn {
    background: transparent;
    border: none;
    color: red;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    padding: 5px 10px;
    transition: transform 0.2s ease, color 0.2s ease;
}

.pricelist-prices-queue-btn:hover {
    color: darkred;
    transform: scale(1.2);
}

.pricelist-prices-queue-empty {
    width: 570px;
    text-align: center;
    font-style: italic;
    color: #777;
    padding: 20px;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    font-family: Arial, sans-serif;
}

