.pricing-table-wrapper {
    width: 100%;
    overflow-x: auto;
}

.table-main-title {
    text-align: center;
    margin-bottom: 20px;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background-color: transparent;
}

/* En-têtes jours avec bordures */
.pricing-table thead tr:first-child th {
    background-color: transparent;
    padding: 15px 8px;
    text-align: center;
    border: none;
    color: white;
}

.pricing-table thead tr:first-child th:not(:first-child):not(.empty-cell) {
    border-left: 2px solid rgba(255, 255, 255, 0.2);
}

.day-header-title {
    margin: 0;
    font-weight: bold;
    text-transform: uppercase;
}

.day-header-subtitle {
    font-size: 0.6em;
    font-weight: normal;
    display: block;
    margin-top: 2px;
}

/* Tranches horaires */
.pricing-table thead tr:nth-child(2) th:not(.empty-cell) {
    background-color: #7FB3A8;
    padding: 12px 8px;
    text-align: center;
    font-weight: normal;
    border: none;
    color: white;
}

.pricing-table thead th.empty-cell {
    background-color: transparent;
    border: none;
}

/* Corps du tableau */
.pricing-table tbody td {
    padding: 15px 8px;
    text-align: center;
    border: none;
    background-color: transparent;
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.2s ease;
}

.pricing-table tbody td:first-child {
    font-weight: bold;
    text-align: left;
    padding-left: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-table tbody td.price-cell {
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-table tbody tr:last-child td {
    border-bottom: none;
}

/* Hover par colonne */
.pricing-table tbody td.price-cell:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

/* Mode sans labels */
.pricing-table-wrapper.no-labels .pricing-table tbody td:first-child {
    display: none;
}

.pricing-table-wrapper.no-labels .pricing-table thead th.empty-cell {
    display: none;
}

.pricing-table-wrapper.no-labels .pricing-table tbody td.price-cell:first-child {
    border-left: none;
}

/* Mobile */
.mobile-pricing {
    display: none;
}

@media screen and (max-width: 768px) {
    .desktop-pricing {
        display: none;
    }
    
    .mobile-pricing {
        display: block;
    }
    
    .mobile-day-section {
        margin-bottom: 40px;
    }
    
    .mobile-day-header {
        text-align: center;
        padding: 15px 0;
        margin-bottom: 10px;
    }
    
    .mobile-mini-table {
        width: 100%;
        border-collapse: collapse;
    }
    
    .mobile-mini-table thead th {
        background-color: #7FB3A8;
        color: white;
        padding: 10px 8px;
        text-align: center;
        font-weight: normal;
    }
    
    .mobile-mini-table tbody td {
        padding: 12px 8px;
        text-align: center;
        color: white;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: background-color 0.2s ease;
    }
    
    .mobile-mini-table tbody td:first-child {
        text-align: left;
        font-weight: bold;
        padding-left: 10px;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .mobile-mini-table tbody td:not(:first-child) {
        border-left: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .mobile-mini-table tbody tr:last-child td {
        border-bottom: none;
    }
    
    .mobile-mini-table tbody td:not(:first-child):hover {
        background-color: rgba(255, 255, 255, 0.05);
    }
    
    /* Mode sans labels mobile */
    .pricing-table-wrapper.no-labels .mobile-mini-table tbody td:first-child,
    .pricing-table-wrapper.no-labels .mobile-mini-table thead th:first-child {
        display: none;
    }
}
