/* Map Container */
.vector-map {
    position: relative;
    width: 100%;
    height: auto;
}

.vector-map path {
    fill: #F4F7FF;
    stroke: #E3E3E3;
    stroke-width: 1;
    transition: all 0.3s ease;
}

.vector-map path:hover {
    fill:   #36ab79bf;
    stroke: var(--accent-color);
    cursor: pointer;
}

/* Tooltip */
.tooltipp {
    position: fixed; /* Changed from absolute to fixed */
    background: #333;
    color: #fff;
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 14px;
    display: none;
    pointer-events: none;
    z-index: 99999;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}