#coconfiber-world-map-wrapper {
    position: relative;
    width: 100%;
    max-width: 1280px;
}

#coconfiber-world-map svg {
    width: 100%;
    height: auto;
    display: block;
}

.country {
    fill: #ccc;
    stroke: #fff;
    stroke-width: 0.5px;
}

.country:hover {
    fill: #aaa;
}

.country.has-link {
    fill: #f00;
    cursor: pointer;
}

.country.has-link:hover {
    opacity: 0.8;
}

#coconfiber-world-map-info {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.75);
    border-radius: 6px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 14px;
    color: #fff;
    pointer-events: none;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#coconfiber-world-map-info.visible {
    opacity: 1;
}

#coconfiber-info-country {
    font-weight: 600;
    color: #fff;
}

#coconfiber-info-separator {
    color: rgba(255, 255, 255, 0.5);
    margin: 0 4px;
}

#coconfiber-info-customer {
    color: rgba(255, 255, 255, 0.85);
}
