﻿.custom-map-marker {
    width: 40px;
    height: 40px;
    background-size: cover;
    background-position: center;
    border-radius: 50%; /* Ensures circular shape */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    border: 2px solid white;
    position: absolute;
    transform: translate(-50%, -50%);
}

.custom-map-marker {
    width: 55px;
    height: 55px;
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    position: absolute;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

/* Tooltip Styling */
.marker-tooltip {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgb(61 60 60 / 80%);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    white-space: nowrap;
    font-size: 12px;
    display: none; /* Hidden by default */
    z-index: 10;
}
