/* =============================================================
   IWM Interactive World Map — v2.0
   ============================================================= */

/* ── Wrapper ────────────────────────────────────────────────── */
.iwm-wrapper {
    width: 100%;
    font-family: inherit;
}

/* ── Map canvas ─────────────────────────────────────────────── */
#iwm-map {
    width: 100%;
    background: #eef2f7;
    border-radius: 12px;
    overflow: hidden;
}

#iwm-map svg {
    display: block;
    width: 100%;
    height: 100%;
}

/* ── Legend ─────────────────────────────────────────────────── */
.iwm-legend {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.iwm-legend-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: #555;
    line-height: 1;
}

.iwm-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.iwm-dot--served { background: #1a73e8; }
.iwm-dot--other  { background: #d4d4d4; }

/* ── Tooltip — only shown for served countries ──────────────── */
#iwm-tooltip {
    position: fixed;
    z-index: 99999;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.12s ease;

    background: #ffffff;
    border: 1px solid #dde3ed;
    border-left: 3px solid #1a73e8;
    border-radius: 0 8px 8px 0;
    padding: 9px 14px 9px 11px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.10);

    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 160px;
    max-width: 220px;
}

.iwm-tip-name {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.3;
}

.iwm-tip-badge {
    font-size: 12px;
    color: #1a73e8;
    font-weight: 500;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 600px) {
    #iwm-map      { border-radius: 8px; }
    .iwm-legend   { gap: 14px; }
    .iwm-legend-item { font-size: 12px; }
}
