/* Additional fixes for pricing table */
.price-table thead tr th {
    background-color: #112f5e;
    padding: 15px 10px;
    font-size: 16px;
    color: white;
    border: none;
}

.price-table tbody tr td {
    padding: 15px 10px;
    font-size: 15px;
    text-align: center;
}

.price-table tbody tr:nth-child(odd) td {
    background-color: #ffffff;
}

.price-table tbody tr:nth-child(even) td {
    background-color: #f2f8ff;
}

.price-table tbody td:first-child {
    font-weight: 600;
    color: #333;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .price-table thead tr th {
        font-size: 13px;
        padding: 10px 5px;
        white-space: normal; /* Cho phép xuống dòng khi cần thiết */
    }
    
    .price-table tbody tr td {
        font-size: 13px;
        padding: 10px 5px;
        white-space: normal; /* Cho phép xuống dòng khi cần thiết */
    }

    /* Thay đổi kích thước và định dạng chữ cho tiêu đề cột */
    .price-table th:first-child {
        min-width: 70px; /* Đảm bảo cột số tiền có đủ không gian */
    }
    
    .price-table th:nth-child(2),
    .price-table th:nth-child(3) {
        min-width: 60px; /* Đảm bảo cột giá có đủ không gian */
    }
}