

#map {
    width: 100%;
    height: 400px; /* Adjust height as needed */
    border: 1px solid #ccc; /* Optional border for the map */
}

.marker {
    background-color: #ff7800;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    border: 2px solid white;
    position: relative;
}

.tooltip {
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px;
    border-radius: 3px;
    position: absolute;
    bottom: 100%; /* Position above the marker */
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    display: none; /* Initially hidden */
}

.marker:hover .tooltip {
    display: block; /* Show tooltip on hover */
}