/* Custom styles for Leaflet map & travel tracker */

/* Dark mode Leaflet tweaks */
.leaflet-container {
    background: #020617 !important;
    font-family: inherit;
}

.leaflet-div-icon {
    background: transparent !important;
    border: none !important;
}

.leaflet-popup-content-wrapper, .leaflet-popup-tip {
    background: #0f172a !important;
    color: #f8fafc !important;
    border: 1px solid #334155;
    border-radius: 1rem !important;
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.5) !important;
}

.leaflet-popup-content {
    margin: 12px 16px !important;
    line-height: 1.5 !important;
}

/* Pulsing car marker animation */
.car-pin-pulse {
    display: flex;
    align-items: center;
    justify-content: center;
}

.car-pin-pulse::after {
    content: '';
    position: absolute;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(16, 185, 129, 0.4);
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
    z-index: -1;
}

@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}
