:root {
    --bs-primary-rehlo: #016EB3;
}

.Map_currentLocationBtn {
    z-index: 3;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 18px;
    right: 18px;
    background: #016EB3;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    padding: 7px;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.3); /* Add subtle shadow */
    animation: Map_fadeIn__J8QBl 2.5s ease-in-out infinite forwards; /* Fade-in animation */
    cursor: pointer; /* Show a pointer cursor on hover */
}

    .Map_currentLocationBtn:hover {
        background: #004c82; /* Change background color on hover */
    }

    .Map_currentLocationBtn svg {
        width: 24px;
        height: 24px;
        fill: #fff;
    }

@keyframes Map_fadeIn__J8QBl {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }

    50% {
        opacity: 0.5;
        transform: scale(1);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes drop {
    0% {
        transform: translateY(-200px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.drop-animation {
    animation: drop 0.5s ease-out;
}

/* Hide the close button of the InfoWindow */
.gm-style-iw-chr {
    display: none !important;
}

/* Tooltip container styling */
.marker-tooltip {
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #333;
    background-color: #fff;
    padding: 10px;
    text-align: center;
}

    /* Tooltip title */
    .marker-tooltip .tooltip-title {
        font-size: 16px;
        font-weight: bold;
        color: var(--bs-primary-rehlo);
        margin-bottom: 5px;
    }

    /* Tooltip description text */
    .marker-tooltip .tooltip-text {
        font-size: 14px;
        margin: 0;
        color: #666;
    }

.marker-hover {
    cursor: pointer;
}
