﻿body {
}

/* Container for the map */
.map-container {
    width: 100%;
    height: 500px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}

/* Animated marker drop */
.gmp-advanced-marker {
    animation: markerDrop 2s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform, opacity;
}

@keyframes markerDrop {
    0% {
        transform: translateY(-100px) scale(0.7);
        opacity: 0;
    }
    70% {
        transform: translateY(10px) scale(1.1);
        opacity: 1;
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* Info window popup styling */
.gmap-info-window {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    padding: 16px 20px;
    min-width: 220px;
    max-width: 320px;
    font-size: 1rem;
    color: #222;
    opacity: 0;
    transform: scale(0.8) translateY(20px);
    animation: infoWindowPop 0.35s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes infoWindowPop {
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Optional: Info window arrow */
.gmap-info-window::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -12px;
    transform: translateX(-50%);
    border-width: 8px 8px 0 8px;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.10));
}
