#asr-map-container {
    position: relative;
    width: 100%;
}

#asr-progress-bar {
    background: #f1f1f1;
    padding: 10px 15px;
    font-weight: bold;
    border-radius: 4px 4px 0 0;
    border: 1px solid #ccc;
    border-bottom: none;
}

#asr-map {
    border: 1px solid #ccc;
}

#asr-info-box {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #fff;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    border-radius: 8px;
    z-index: 1000;
    max-height: 55vh;
    overflow-y: auto;
}

#asr-info-box.asr-hidden {
    display: none;
}

#asr-close-info {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.asr-user-location-dot {
    background: #0073aa;
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    width: 16px !important;
    height: 16px !important;
}

/* Custom Marker Colors using Leaflet default icon hue or custom divs */
.asr-marker-unvisited {
    background-color: #2271b1; /* WordPress Blue for unvisited */
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 5px rgba(0,0,0,0.4);
}

.asr-marker-visited {
    background-color: #00a32a; /* Green for visited */
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 5px rgba(0,0,0,0.4);
}
