/**
 * Google Maps Styling
 */

/* Map container */
#map {
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Info window styling */
.gm-style .gm-style-iw-c {
    padding: 12px !important;
    border-radius: 8px !important;
}

.gm-style .gm-style-iw-d {
    overflow: auto !important;
}

.gm-style .gm-style-iw-t::after {
    background: linear-gradient(45deg, white 50%, transparent 51%, transparent) !important;
}

/* Marker animation */
@keyframes markerBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Map controls */
.gm-control-active {
    border-radius: 4px !important;
}

/* Responsive map height */
@media (max-width: 768px) {
    #map {
        height: 400px !important;
    }
}

/* Loading spinner for map */
.map-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
}

/* Marker info window buttons */
.gm-style-iw-d .btn {
    font-size: 0.875rem;
    padding: 0.375rem 0.75rem;
}

/* Custom map styles */
.map-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.map-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 5;
    background: white;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

/* Full screen map */
.map-fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
}

