/* Define the bounce animation configuration here */
.gmap-marker-bounce {
    animation: bounce 2s infinite;
    -webkit-animation: bounce 2s infinite;
    -moz-animation: bounce 2s infinite;
    -o-animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-30px);
    }
    60% {
        transform: translateY(-15px);
    }
}

.gmap-marker-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gmap-label {
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 4px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    color: #ffffff;
    background-color: #5381cc;
    border: 1px solid #4c33c8;
}

.gmap-label-gray {
    background-color: #888888;
    border: 1px solid #444444;
}
