.map {
    width: 100%;
    max-width: 700px;

}

.tooltip {
    position: absolute;
    background-color: #333;
    color: white;
    border-radius: 5px;
    padding: 8px 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    pointer-events: none; /* Prevents the tooltip from interfering with mouse events */
    opacity: 0;
    transition: opacity 0.2s, transform 0.2s;
    white-space: nowrap; /* Prevents the text from wrapping */
    transform: translateY(-10px); /* Moves the tooltip up slightly */
    z-index: 1000; /* Ensures the tooltip appears above other elements */
}

