.tooltip {
    position: absolute;
    margin: 70px 0 0 -100px;
    visibility: hidden;
    background: #AF4E06;
    color: white;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 1000;
    width: 250px;
}

.tooltip p {
    margin: 0;
    font-size: 1.2em;
}

.tooltip p span {
    font-weight: 900;
    color: #F3F3F3;
}

.tooltip.visible {
    visibility: visible;
}

.map-point {
    cursor: pointer;
    transition: transform 0.2s ease;
}

.map-point:hover {
    transform: scale(1.1);
}