/* Styles personnalisés pour Info Route Mayotte Web SPA */

/* Animations pour l'enregistrement vocal */
@keyframes pulse-ring {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(239, 68, 68, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}

.recording-pulse {
    animation: pulse-ring 1.5s infinite cubic-bezier(0.4, 0, 0.6, 1);
}

/* Personnalisation de la carte Leaflet */
#map {
    height: 100%;
    width: 100%;
    z-index: 10;
}

.leaflet-popup-content-wrapper {
    border-radius: 1rem;
    padding: 4px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.leaflet-popup-content {
    margin: 8px 10px;
    line-height: 1.4;
    font-family: inherit;
}

/* Custom markers */
.custom-pin {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    border: 2px solid white;
    transition: transform 0.2s ease-in-out;
}
.custom-pin:hover {
    transform: scale(1.15);
}

/* Scrollbar discrète */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Fix iOS safe area */
.safe-bottom {
    padding-bottom: env(safe-area-inset-bottom, 1rem);
}
