path {
    stroke: white;
    fill:#BDCAE0 !important;

    transition: fill .4s ease;
    transform-origin: center center;
}

path:hover {
    fill: #2B4A80 !important;
    cursor: pointer;
    transform: scale(1.005, 1.005);
}

 #map-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

#us-map {
    display: block;
    position: relative;
    top: 0;
    left: 0;
    width: 50%;
    height: 50%;
}

#details-box {
    box-shadow: 0px 7px 40px rgba(0, 0, 0, 0.7);
    opacity: 0%;
    padding: 1rem;
    border-radius: 8px;
    font-size: 16px;
    position: fixed;
    color: white;
    font-family: "Poppins";
    background-color: black;
    width: fit-content;
    transform: translateX(-50%);
    transition: opacity .4s ease;
    z-index: 1;
}