.expo-mauritania-wrap {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: #2D3748;
}

.expo-hero {
    background: linear-gradient(135deg, #b2a6f0 0%, #e2e8f0 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.expo-hero h1 {
    line-height: 1.1;
    color: #1a202c;
}

.stat-item {
    padding: 10px;
}

#booking_section {
    transition: transform 0.3s ease;
}

#booking_section:hover {
    transform: translateY(-5px);
}

.btn-check:checked + label.btn-outline-primary {
    background-color: #0d6efd;
    color: white;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.25);
}

#slot_selector label {
    transition: all 0.2s ease;
}

#slot_selector input:disabled + label {
    background-color: #f1f5f9;
    color: #cbd5e1;
    border-color: #e2e8f0;
    cursor: not-allowed;
    text-decoration: line-through;
}

.form-control, .form-select {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid #e2e8f0;
    font-size: 0.95rem;
}

.form-control:focus, .form-select:focus {
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.15);
    border-color: #0d6efd;
}

.card {
    border-radius: 1rem;
}

.sectors-list .card {
    transition: all 0.3s ease;
}

.sectors-list .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05) !important;
}

/* Custom scrollbar for slot selector */
#slot_selector::-webkit-scrollbar {
    width: 6px;
}

#slot_selector::-webkit-scrollbar-track {
    background: #f1f5f9;
}

#slot_selector::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

#slot_selector::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* V2 Booking Styles */
.v2-date-pill {
    padding: 8px 16px;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
    background: white;
}

input[name="date"]:checked + .v2-date-pill {
    background: #b2a6f0;
    color: white;
    border-color: #b2a6f0;
    box-shadow: 0 4px 10px rgba(125, 90, 115, 0.3);
}

.v2-slot-pill {
    padding: 6px 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
    background: white;
}

input[name="time_slot_id"]:checked + .v2-slot-pill {
    background: #b2a6f0;
    color: white;
    border-color: #b2a6f0;
}

input[name="time_slot_id"]:disabled + .v2-slot-pill, 
.v2-slot-reserved {
    background: #f1f3f5 !important;
    color: #adb5bd !important;
    border-color: #dee2e6 !important;
    cursor: not-allowed !important;
    text-decoration: line-through;
    opacity: 0.7;
}

.v2-booking-card input:focus, .v2-booking-card select:focus {
    outline: none;
    border-color: #b2a6f0 !important;
    box-shadow: 0 0 0 3px rgba(125, 90, 115, 0.1);
}

@media (max-width: 768px) {
    .v2-booking-inner-form > div {
        grid-template-columns: 1fr !important;
    }
}
