@keyframes floatUpDown {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0);
    }
}

.locate-btn-wrapper {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1050;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: floatUpDown 2.5s ease-in-out infinite;
}

.locate-btn-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #0d6efd;
    color: white;
    border: none;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.locate-btn-circle:hover {
    background-color: #0b5ed7;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}

.locate-btn-circle i {
    font-size: 24px;
}

.visit-label {
    /* opacity: .5; */
    background-color: #fff;
    color: #000;
    padding: 3px 3px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); */
    position: relative;
    top: -15px;
    right: -10px;
    white-space: nowrap;
    transition: opacity 0.3s ease;
}

.modal-header {
    background-color: #f8f9fa;
}

.modal-title {
    display: flex;
    align-items: center;
    gap: 8px;
}

#mapContainer {
    border-radius: 8px;
    overflow: hidden;
}