/* Minimal Frontend CSS for HCMM Map */
#hcmm-frontend-map-container {
    max-width: 100%;
    margin: 20px 0;
    font-family: Arial, sans-serif;
}

.hcmm-map-header {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    padding: 20px;
    text-align: center;
    border-radius: 8px 8px 0 0;
}

.hcmm-map-header h3 {
    margin: 0 0 15px 0;
    font-size: 24px;
    font-weight: 600;
}

.hcmm-nav-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.hcmm-nav-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.hcmm-nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

#frontend-hcmm-map-admin {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 0 0 8px 8px;
}

#frontend-hcmm-map-info {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 8px 8px;
}

.hcmm-legend {
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 8px 8px;
}

/* State styling */
.state {
    transition: all 0.3s ease;
}

.state:hover {
    filter: brightness(1.1);
}

.state-label {
    font-family: 'Arial', sans-serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    pointer-events: none;
}

/* Responsive */
@media (max-width: 768px) {
    .hcmm-nav-buttons {
        justify-content: center;
    }
    
    .hcmm-nav-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .hcmm-map-header h3 {
        font-size: 20px;
    }
}