.country-tooltip {
    position: fixed;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 6px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    padding: 0;
    border: 1px solid rgba(26, 26, 26, 0.08);
    min-width: 200px;
    max-width: 280px;
    font-family: var(--rw-font-family, 'Aeonik Pro', sans-serif);
    backdrop-filter: blur(10px);
    overflow: hidden;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.country-tooltip.visible {
    opacity: 1;
    transform: translateY(0);
}

.country-tooltip-header {
    background: rgba(248, 249, 250, 0.92);
    color: var(--RWC_Black, #1A1A1A);
    border-bottom: 1px solid rgba(26, 26, 26, 0.06);
    padding: 10px 12px;
    font-weight: 700;
    font-size: 0.86rem;
    line-height: 1.2;
}

.country-tooltip-body {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.country-tooltip-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.78rem;
    line-height: 1.4;
    color: var(--rw-text-on-light, #495057);
}

.country-tooltip-row--primary {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--RWC_Black, #1A1A1A);
}

.country-tooltip-key {
    color: rgba(233, 0, 6, 0.76);
    min-width: 42px;
    font-weight: 700;
}
