.radar-header {
    padding: 3rem 0 1rem;
    text-align: center;
}

.radar-header h1 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.map-container {
    position: relative;
    background: linear-gradient(135deg, #1e3a5f 0%, #2d4b6e 100%);
    border-radius: 24px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.map-controls {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    display: flex;
    gap: 5px;
}

.map-controls button {
    width: 40px;
    height: 40px;
    padding: 0;
    font-size: 1.2rem;
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
}

.world-map-large {
    position: relative;
    height: 500px;
    background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    transition: transform 0.3s ease;
}

.map-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 1rem 0 3rem;
    padding: 1rem;
    background: var(--gray-light);
    border-radius: 12px;
}

.map-legend .dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 5px;
}

.dot.urgent { background: #ef4444; animation: pulse 2s infinite; }
.dot.high { background: #f97316; }
.dot.medium { background: #fbbf24; }
.dot.low { background: #10b981; }

.country-list {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin: 2rem 0;
}

.country-row {
    display: grid;
    grid-template-columns: 2fr 2fr 0.5fr;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--gray-medium);
}

.country-name {
    font-weight: 600;
    color: var(--primary);
}

.country-risk {
    display: flex;
    align-items: center;
    gap: 15px;
}

.progress-bar-small {
    flex: 1;
    height: 8px;
    background: var(--gray-medium);
    border-radius: 4px;
    overflow: hidden;
}

.risk-value {
    font-weight: 600;
    min-width: 40px;
}

@media (max-width: 768px) {
    .world-map-large {
        height: 300px;
    }
    
    .country-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}