.tarifs-kayak {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    font-size: 16px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.tarifs-kayak thead tr {
    background-color: #33cc33;
    color: white;
}

.tarifs-kayak th,
.tarifs-kayak td {
    padding: 14px 16px;
    border: 1px solid #eee;
    text-align: left;
}

/* Colonnes équilibrées */
.tarifs-kayak th:nth-child(2),
.tarifs-kayak th:nth-child(3),
.tarifs-kayak th:nth-child(4),
.tarifs-kayak th:nth-child(5),
.tarifs-kayak td:nth-child(2),
.tarifs-kayak td:nth-child(3),
.tarifs-kayak td:nth-child(4),
.tarifs-kayak td:nth-child(5) {
    width: 15%;
}

/* Alternance */
.tarifs-kayak tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.tarifs-kayak tbody tr:nth-child(odd) {
    background-color: #ffffff;
}

/* Hover */
.tarifs-kayak tbody tr:hover {
    background-color: #ccffcc;
    cursor: pointer;
}

/* Badges distance */
.badge {
    background-color: #33cc33;
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    display: inline-block;
}

/* Badges durée harmonisés */
.badge-d2 {
    background-color: #3399ff;
}

/* 2h / 2h30 */
.badge-d3 {
    background-color: #3366ff;
}

/* 3h */
.badge-d4 {
    background-color: #6633ff;
}

/* 4/5h */
.badge-d5 {
    background-color: #cc33ff;
}

/* 5h / 5/6h */
.badge-d7 {
    background-color: #ff33cc;
}

/* 7/8h */


/* Responsive */
@media (max-width: 800px) {
    .tarifs-kayak {
        border: 0;
        box-shadow: none;
    }

    .tarifs-kayak thead {
        display: none;
    }

    .tarifs-kayak tbody {
        display: block;
    }

    .tarifs-kayak tr {
        display: block;
        margin-bottom: 20px;
        border: 2px solid #33cc33;
        border-radius: 10px;
        padding: 0 !important;
        background-color: #fff !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .tarifs-kayak tbody tr:nth-child(even),
    .tarifs-kayak tbody tr:nth-child(odd) {
        background-color: #fff !important;
    }

    .tarifs-kayak tbody tr:hover {
        background-color: #fff !important;
        box-shadow: 0 4px 12px rgba(51, 204, 51, 0.3);
    }

    .tarifs-kayak td {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        padding: 12px 15px !important;
        border: none !important;
        border-bottom: 1px solid #eee !important;
        text-align: right !important;
        width: 92% !important;
    }

    .tarifs-kayak td:last-child {
        border-bottom: none !important;
    }

    .tarifs-kayak td::before {
        content: attr(data-label);
        font-weight: bold;
        color: #333;
        text-align: left;
        flex: 1;
        padding-right: 10px;
    }

    .tarifs-kayak td:first-child {
        background-color: #f0f9f0;
        font-weight: bold;
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
    }

    /* Ajuster les badges pour mobile */
    .tarifs-kayak .badge {
        font-size: 12px;
        padding: 3px 8px;
    }
}