.client-map {
    display: block;
    width: 100%;
    height: auto;
    overflow: visible;
    border: 2px solid var(--border-color);

    --map-color: oklch(from var(--primary-color) calc(l * 1.5) calc(c * 1.5) h);

    .countries path {
        fill: var(--map-color);
        stroke: var(--border-color);
        stroke-width: 0.5;
    }

    .markers circle {
        cursor: pointer;
        fill: oklch(from var(--map-color) l c calc(h - 90));
        stroke: var(--shadow);
        stroke-width: 1;
        r: 5px;
    }

    .tooltips {
        pointer-events: none;

        .tooltip {
            display: none;

            div {
                width: max-content;
                background: rgba(0, 0, 0, 0.8);
                color: #fff;
                padding: 5px 10px;
                border-radius: 4px;
                white-space: nowrap;
            }
        }
    }
}

.city-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;

    list-style: none;
    padding: 0;
}