body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f5f7fb;
    color: #111827;
}

.public-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px;
}

.page-title {
    font-size: 32px;
    margin-bottom: 6px;
}

.page-subtitle {
    color: #6b7280;
    margin-bottom: 24px;
}

.section-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 22px;
    margin: 24px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.grid {
    display: grid;
    gap: 16px;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.country-card,
.case-card,
.stat-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 16px;
    text-decoration: none;
    color: #111827;
}

.country-card {
    display: flex;
    align-items: center;
    gap: 12px;
}

.country-card:hover,
.case-card:hover,
.stat-card:hover {
    border-color: #2563eb;
    box-shadow: 0 4px 12px rgba(37,99,235,0.10);
}

.flag-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
}

.muted {
    color: #6b7280;
}

.search-box {
    width: 60%;
    max-width: 650px;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
}

.btn {
    padding: 12px 18px;
    font-size: 16px;
    border: 1px solid #2563eb;
    border-radius: 10px;
    background: #2563eb;
    color: white;
    cursor: pointer;
}

.btn-link {
    color: #2563eb;
    text-decoration: none;
}

.chip {
    display: inline-block;
    padding: 7px 12px;
    margin: 5px;
    border: 1px solid #d1d5db;
    border-radius: 999px;
    text-decoration: none;
    color: #111827;
    background: white;
}

.chip:hover {
    border-color: #2563eb;
}

.breadcrumb {
    font-size: 14px;
    margin-bottom: 18px;
    color: #6b7280;
}

.breadcrumb a {
    color: #2563eb;
    text-decoration: none;
}

hr {
    border: none;
    border-top: 1px solid #e5e7eb;
    margin: 24px 0;
}

#world-map {
    width: 100%;
    overflow-x: auto;
}

#world-map svg {
    width: 100%;
    height: auto;
}

#world-map path {
    fill: #d1d5db;
    stroke: #ffffff;
    stroke-width: 0.5;
    transition: fill 0.2s ease;
}

.map-dashboard {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 18px;
    align-items: start;
}

.map-main {
    min-height: 520px;
}

.country-pulse {
    max-height: 620px;
    overflow-y: auto;
}

.country-pulse-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    margin-bottom: 10px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    text-decoration: none;
    color: #111827;
    background: #ffffff;
}

.country-pulse-item:hover {
    border-color: #2563eb;
    box-shadow: 0 4px 12px rgba(37,99,235,0.10);
}

@media (max-width: 900px) {
    .map-dashboard {
        grid-template-columns: 1fr;
    }
}