/* Aurora Sauna Map - User Location Styles */
/* Version: 1.3 */

/* User location popup should have black text */
.user-location-popup .leaflet-popup-content {
    color: #313131 !important;
    padding: 8px 12px !important;
}

/* User location marker styles */
.user-location-marker {
    background: transparent !important;
    border: none !important;
}

.user-location-marker:hover {
    transform: scale(1.05);
    transition: transform 0.2s ease;
}

/* Hide location button when user location is available */
body.user-location-available #locate-btn {
    display: none !important;
}

/* Location text link styles */
#locate-btn {
    color: #26767F !important;
    text-decoration: underline !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: all 0.2s !important;
    border: none !important;
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    display: inline !important;
}

#locate-btn:hover {
    color: #1f5f66 !important;
    text-decoration: underline !important;
}

#locate-btn:disabled {
    cursor: default !important;
    pointer-events: none !important;
    opacity: 1 !important;
}

#locate-btn:disabled:hover {
    color: #22c55e !important;
    text-decoration: none !important;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
    /* Touch-friendly location text on mobile */
    #locate-btn {
        font-size: 14px !important;
        padding: 0 !important;
    }
    
    #locate-btn:disabled:hover {
        color: #22c55e !important;
        text-decoration: none !important;
    }
} 