/* Activator Toolkit for SOTA — Contact map iframe page styles */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: sans-serif; }
#map { width: 100%; height: 100vh; }
.popup-content { font-size: 13px; line-height: 1.6; }
.popup-content strong { display: block; margin-bottom: 5px; font-size: 15px; color: #333; }
.band-indicator {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 5px;
    vertical-align: middle;
}
#loading-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: #f5f5f5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.3s ease;
}
#loading-overlay.hidden { opacity: 0; pointer-events: none; }
.loading-spinner {
    width: 50px; height: 50px;
    border: 5px solid #e0e0e0;
    border-top: 5px solid #0073aa;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
.loading-text { margin-top: 20px; font-size: 16px; color: #666; }
.loading-icon { margin-bottom: 10px; line-height: 0; }
