/* Map Styles */
.map-container {
    width: 100%;
    height: 500px;
    margin: 20px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
}

#map {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

/* Custom Marker Styles */
.custom-marker {
    cursor: pointer;
    position: relative;
}

.pin-container {
    position: relative;
    width: 24px;
    height: 24px;
}

.pin {
    width: 24px;
    height: 24px;
    border-radius: 50% 50% 50% 0;
    background: #e74c3c;
    position: absolute;
    transform: rotate(-45deg);
    left: 50%;
    top: 50%;
    margin: -12px 0 0 -12px;
    animation: bounce 0.25s ease-in-out;
}

.pin::after {
    content: '';
    width: 12px;
    height: 12px;
    margin: 6px 0 0 6px;
    background: #fff;
    position: absolute;
    border-radius: 50%;
}

.pin-shadow {
    width: 16px;
    height: 16px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: 8px 0 0 -8px;
    transform: rotateX(55deg);
    z-index: -1;
    animation: shadow 0.25s ease-in-out;
}

@keyframes bounce {
    0% {
        transform: rotate(-45deg) translate(0, -20px);
        opacity: 0;
    }
    60% {
        transform: rotate(-45deg) translate(0, 5px);
        opacity: 1;
    }
    100% {
        transform: rotate(-45deg) translate(0, 0);
    }
}

@keyframes shadow {
    0% {
        transform: rotateX(55deg) scale(0.5);
        opacity: 0;
    }
    60% {
        transform: rotateX(55deg) scale(1.2);
        opacity: 1;
    }
    100% {
        transform: rotateX(55deg) scale(1);
    }
} 