/**
 * ACF Google Map Styles
 */

/* Map container */
.acf-map {
    width: 100%;
    height: 400px;
    border: 1px solid #ccc;
    margin: 20px 0;
}

/* Hide map markers initially (they're used for data only) */
.acf-map .marker {
    display: none;
}

/* Info window styles */
.acf-map .location-address {
    padding: 10px;
    font-size: 14px;
    line-height: 1.4;
}

/* Ensure map is responsive */
.precinct-map {
    width: 100%;
    overflow: hidden;
}

.precinct-map .acf-map {
    margin: 0;
}

/* Map loading state */
.acf-map.loading {
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.acf-map.loading:before {
    content: "Loading map...";
    color: #666;
    font-size: 14px;
}

/* Full width map */
.alignfull .acf-map {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .acf-map {
        height: 300px;
    }
}