:root {
    --radius: 0.5rem;
}

.gradient-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.fade-in {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Indicateurs d'étapes */
.booking-step-item.is-active .booking-step-circle {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    transform: scale(1.1);
}

.booking-step-item.is-completed .booking-step-circle {
    background: #10b981;
    color: white;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.booking-step-item.is-active .booking-step-label {
    color: #667eea;
    font-weight: 600;
}

.booking-step-circle {
    transition: all 0.3s ease;
}

.booking-step-item.is-completed .booking-step-circle::after {
    content: "✓";
    position: absolute;
    font-size: 14px;
    font-weight: bold;
}