.pricing-table-wrapper {
    width: 100%;
    margin-bottom: 2rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 1px solid #ddd;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    border-radius: 15px;
    overflow: hidden;
    table-layout: fixed;
}

.pricing-table th {
    text-align: center !important;
    background: linear-gradient(300deg, #0575e6 9.6%, #ff0cf5 92.85%);
    color: white;
    padding: 15px 10px;
    font-weight: bold;
    font-size: 16px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    width: 25%;
}

/* Remove gradient from second row headers */
.pricing-table thead tr:nth-child(2) th {
    background: none !important;
    background-color: transparent !important;
    border-bottom: 2px solid #ddd;
}

.pricing-table td {
    text-align: center !important;
    padding: 20px 15px;
    /* vertical-align: middle; */
    width: 25%;
}

.pricing-table th,
.pricing-table td {
    text-align: center !important;
    border-right: 1px solid #ddd;
}

/* Remove right border from last column */
.pricing-table th:last-child,
.pricing-table td:last-child {
    border-right: none;
}

/* Rounded corners for bottom-left cell */
.pricing-table tr:last-child td:first-child {
    border-bottom-left-radius: 15px;
}

/* Rounded corners for bottom-right cell */
.pricing-table tr:last-child td:last-child {
    border-bottom-right-radius: 15px;
}

.pricing-table th:nth-child(1),
.pricing-table th:nth-child(2) {
    background: linear-gradient(300deg, #0575e6 9.6%, #ff0cf5 92.85%);
}

.pricing-table th:nth-child(3),
.pricing-table th:nth-child(4) {
    background: linear-gradient(300deg, #0575e6 9.6%, #ff0cf5 92.85%);
}

.price-item {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 8px;
    text-align: center;
}

.validity-item,
.hours-item {
    font-size: 14px;
    color: #fff;
    margin-bottom: 8px;
    text-align: center;
}

.features-item {
    font-size: 13px;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 10px;
    text-align: center;
}

.table-apply-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    min-width: 100px;
    display: block;
    margin: 0 auto;
}

.table-apply-btn:hover {
    background-color: #0056b3;
}

.table-more-details {
    color: white !important;
    text-decoration: underline !important;
    font-size: 14px;
    display: block;
    text-align: center;
    margin-top: 10px;
    transition: opacity 0.3s ease;
}

.table-more-details:hover {
    opacity: 0.8;
    color: white !important;
}

/* Hide table on tablet and mobile - Desktop only */
@media (max-width: 1024px) {
    .pricing-table-wrapper {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .pricing-table-wrapper {
        overflow-x: auto;
    }
    
    .pricing-table {
        min-width: 600px;
    }
}
