﻿.go-back-link {
    position: absolute;
    right: 10px; /* or adjust as needed */
    color: white;
    text-decoration: none;
}

    .go-back-link:hover {
        text-decoration: underline;
    }

.center-title1 {
    display: flex;
    justify-content: center; /* Center the content */
    align-items: center;
    position: relative;
    background-color: #121e5e;
    border-radius: 4px;
    color: white;
    padding: 5px; /* optional for spacing */
}
.blink {
    animation: color-blink 1.5s infinite alternate;
}

@keyframes color-blink {
    0% {
        color: #1E90FF; /* DodgerBlue (light blue) */
    }

    100% {
        color: #00008B; /* DarkBlue */
    }
}

#custom-map-tooltip {
    position: fixed; /* Fixed to viewport so we can easily calculate screen edges */
    z-index: 10000;
    background: white;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    display: none; /* Hidden by default */
    pointer-events: auto; /* Allow clicking links inside */
    transform: translate(-50%, 0); /* Center horizontally by default */
    transition: opacity 0.2s ease-in-out;
}