/* Recap */
#recap-options {
    /* font-family: monospace; */
    font-size: 14px;
    /* padding: 1em; */
    /* border: 1px solid #ccc;
    border-radius: 8px; */
    /* background-color: #f9f9f9; */
    max-width: 100%;
    overflow-wrap: break-word;
    line-height: 1.6;
}

.recap-line {
    display: flex;
    justify-content: space-between;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.recap-line .label {
    background: white;
    position: relative;
    z-index: 1;
    padding-right: 0.25em;
}

.recap-line .price {
    background: white;
    position: relative;
    z-index: 1;
    padding-left: 0.25em;
}

.recap-line::before {
    content: "................................................................................................................................................................................................................................";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    color: #aaa;
    pointer-events: none;
    z-index: 0;
}


/* Sticky first column */
#choix-options th:first-child,
#choix-options td:first-child {
    position: sticky;
    left: 0;
    z-index: 3;
    min-width: 50%;
}


/* Bouton de réservation */
.reserve-btn {
    display: inline-block;
    background-color: #0d6efd;
    color: white;
    padding: 10px 18px;
    border-radius: 4px;
}

.reserve-btn:hover {
    background-color: #0c57c6;
}

@media (max-width: 639px) {
    .reserve-btn {
        margin-top: 10px !important;
        width: 100%;
        text-align: center;
    }

    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }
}

