#interactive-map {
    background-color:#0a344f;
}

#interactive-map svg {
    width: 100%;
    height: 100%;
    max-height:750px;
}

#interactive-map svg path {
    stroke:#FFFFFF;
    fill:#FFFFFF;
    stroke-width: .5px;
}

.map-pin {
    transform-box: fill-box;
    transform-origin: center bottom;
    transition: transform 0.2s ease;
    cursor: pointer;
}

.map-pin:hover {
    transform: scale(1.5);
    padding-bottom:10px;
    transition: transform 0.3s ease;
}

.map-zoom-container {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size:24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    color:#fff;
}
.bg-navy {
    background-color: #0a344f;
}
.text-navy {
    color: #0a344f;
}
.hover\:text-navy:hover {
    color: #0a344f;
}
.hover\:bg-navy:hover {
    background-color: #0a344f;
}
.focus\:text-navy:focus {
    color: #0a344f;
}
.focus\:bg-navy:focus {
    background-color: #0a344f;
}
.text-gold {
    color: #c6a564;
}
.hover\:text-gold:hover {
    color: #c6a564;
}
.map-zoom-container button {
    background-color: #0a344f;
    border: 1px solid #f1c77c;
    padding: 5px 10px;
    cursor: pointer;
    height:40px;
    width:40px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 9999px;

}

.map-zoom-container button:hover {
    background-color: #eed69e;
    color: #0a344f;
    transition: background-color 0.3s ease;
}