/* Price Table Widget Styles */

.price-table-widget {
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0px 0px 87.3px 2.7px rgba(0, 0, 0, 0.06);
    margin: 20px auto;
}

.price-table-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
}

.price-table thead th {
    background-color: #f9f9f9;
    color: #333;
    padding: 15px;
    text-align: left;
    font-size: 1.2rem;
    font-weight: normal;
}

.price-table tbody tr {
    transition: background-color 0.2s ease;
}

.price-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.price-table tbody tr:hover {
    background-color: #e0f7fa;
}

.price-table td {
    padding: 15px;
    border-bottom: 1px solid #ddd;
    font-size: 1rem;
    color: #555;
    text-align: left;
}

.price-table td:first-child {
    font-weight: bold;
    color: #333;
}

.price-table td:last-child {
    text-align: left;
    color: #000;
    font-weight: bold;
    width: 150px;
}

@media (max-width: 600px) {
    .price-table td {
        display: block;
        width: 100%;
        box-sizing: border-box;
        padding: 10px;
        border-bottom: 1px solid #ddd;
    }
    .price-table td:last-child {
        text-align: left;
        margin-top: 5px;
    }
}