/* Structure générale */
.ltav-booking-wizard {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px;
}

/* Indicateur d'étapes */
.ltav-steps-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.ltav-steps-indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: #e0e0e0;
    z-index: 1;
}

.ltav-steps-indicator .step {
    background: white;
    padding: 10px 20px;
    border-radius: 20px;
    border: 2px solid #e0e0e0;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ltav-steps-indicator .step.active {
    border-color: #007cba;
    color: #007cba;
    font-weight: bold;
}

.step-number {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

.step.active .step-number {
    background: #007cba;
    color: white;
}

/* Contenu des étapes */
.ltav-step-content {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Datepicker personnalisé */
.datepicker-wrapper {
    text-align: center;
    margin: 20px 0;
}

.arrival-datepicker {
    font-size: 18px;
    padding: 10px;
    text-align: center;
    width: 200px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* Sélecteur de nuits */
.nights-selector {
    text-align: center;
    margin: 20px 0;
}

.nights-selector input {
    font-size: 18px;
    padding: 10px;
    width: 100px;
    text-align: center;
    margin-right: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* Grille des chambres */
.available-rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

/* Carte de chambre */
.room-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    background: white;
}

.room-card:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.room-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.room-card h4 {
    margin: 15px;
    font-size: 1.2em;
    color: #333;
}

.room-details {
    padding: 15px;
}

.room-capacity,
.room-surface {
    margin: 5px 0;
    color: #666;
}

.detail-label {
    font-weight: bold;
    color: #333;
}

.room-description {
    margin-top: 10px;
    color: #333;
}

.room-selection {
    padding: 15px;
    border-top: 1px solid #e0e0e0;
}

.select-room-label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}

.occupancy-selector {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed #e0e0e0;
}

.occupancy-input {
    margin-bottom: 10px;
}

.occupancy-input label {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.occupancy-input input {
    width: 80px;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* Navigation entre les étapes */
.step-navigation {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
}

/* Récapitulatif */
.booking-summary {
    margin-top: 20px;
}

.dates-summary {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.rooms-summary {
    margin-top: 20px;
}

.room-summary {
    border: 1px solid #e0e0e0;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 4px;
}

.room-summary h5 {
    margin: 0 0 10px 0;
    color: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .ltav-steps-indicator {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .ltav-steps-indicator::before {
        display: none;
    }
    
    .available-rooms-grid {
        grid-template-columns: 1fr;
    }
    
    .step-navigation {
        flex-direction: column;
        gap: 10px;
    }
    
    .step-navigation button {
        width: 100%;
    }
}