/* Add zebra striping for even rows */
.pricelist-table tr:nth-child(even) {
    background-color: #f8f9fa;
}
/* Price table styles for prices.php */
.pricelist-table {
    border:1px solid #d7b990;
    border-radius:8px;
    width:100%;
    margin-bottom:2rem;
    border-collapse:collapse;
    background-clip: padding-box;
}
.pricelist-table thead th {
    padding-left: 1rem;
    padding-right: 1rem;
    font-size:1.25rem;
    color:#fff;
    font-weight:600;
    background:#0155af;
    border-right:1px solid #d7b990;
    border-bottom:1px solid #d7b990;
    border-top:1px solid #d7b990;
    border-left:1px solid #d7b990;
    font-family: var(--font-poppins), 'Poppins', sans-serif;
}
.pricelist-table thead th:last-child {
    font-size:1.15rem;
    font-weight:500;
    text-align:right;
    font-family: var(--font-poppins), 'Poppins', sans-serif;
}
.pricelist-table tr {
    border-bottom:1px solid #d7b990;
}
/* .pricelist-table tr:last-child {
    border-bottom:none;
} */
.pricelist-table td {
    font-size:1.15rem;
    border-left:1px solid #d7b990;
    border-right:1px solid #d7b990;
    border-bottom:1px solid #d7b990;
    font-family: var(--font-poppins), 'Poppins', sans-serif;
    padding-left: 1rem;
    padding-right: 1rem;
}
.pricelist-table td:last-child {
    text-align:right;
}
.pricelist-table td:not(:last-child) {
    border-right:1px solid #d7b990;
}
