/* Enhanced Map Styles */
#map {
    height: 70vh; /* 70% of viewport height */
    width: 100%;
    background-color: #e0e0e0; /* Diagnostic background color */
}

@media (max-width: 768px) {
    #map {
        height: 50vh; /* Adjust for smaller screens */
    }
    .display-3 {
        font-size: 2.5rem;
    }
}

.marker-pin {
    width: 30px;
    height: 30px;
    border-radius: 50% 50% 50% 0;
    position: absolute;
    transform: rotate(-45deg);
    left: 50%;
    top: 50%;
    margin: -15px 0 0 -15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.marker-pin i {
    transform: rotate(45deg);
}

.user-location-marker {
    width: 20px;
    height: 20px;
    background: #4285F4;
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    animation: pulse-dot 2s infinite;
    position: relative;
}

@keyframes pulse-dot {
    0% {
        box-shadow: 0 0 0 0 rgba(66, 133, 244, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(66, 133, 244, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(66, 133, 244, 0);
    }
}
