/* Map Styles */
/* =========== */

/* Map Container */
.map-container {
    width: 100%;
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: var(--space-lg);
}

.map-readonly {
    pointer-events: none;
    /* Disable map interaction on poll page */
}

/* Google Maps UI Customization */
.map-container .gm-style {
    font-family: var(--font-sans);
}

/* Info Window */
.map-container .gm-style-iw {
    border-radius: var(--radius-md);
}

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

.map-container .gm-style-iw-t::after {
    background: white;
}

/* Marker Labels */
.map-container .gm-style-mtc {
    font-family: var(--font-sans);
}

/* Larger map on desktop */
@media (min-width: 768px) {
    .map-container {
        height: 500px;
    }
}