﻿.map-wrapper {
    position: relative;
    min-height: 520px;
}

.map-canvas {
    width: 100%;
    height: 520px;
}

.map-coords {
    position: absolute;
    left: 12px;
    bottom: 12px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 4px 10px;
    font-size: 0.85rem;
}

.map-skeleton {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient( 90deg, #f6f7f8 25%, #edeef1 37%, #f6f7f8 63% );
    background-size: 400% 100%;
    animation: shimmer 1.2s infinite;
}



@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}


.map-popup {
    position: absolute;
    transform: translate(-50%, -100%);
    pointer-events: none;
}

.map-popup-inner {
    color: #e5e7eb !important;
    border: 1px solid rgba(0,0,0,.10);
    border-radius: 12px;
    background: rgba(0,0,0,.95);
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
    padding: 10px 12px;
    min-width: 220px;
}

.map-popup-title {
    font-weight: 600;
    margin-bottom: 2px;
}

.map-popup-adresse {
    font-size: 0.8rem;
    margin-bottom: 2px;
}

.map-popup-coords {
    font-size: 0.7rem;
    opacity: 0.8;
}