.gps-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    /*transform: translate(-50%, -100%);*/
    position: relative;
}

.gps-label {
    background-color: rgba(253, 253, 253, 0.4);
    color: #000000;
    padding: 2px 4px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    white-space: nowrap;
    margin-bottom: 4px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.gps-dot {
    width: 6px;
    height: 6px;
    background-color: red;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 0 rgba(255, 0, 0, 0.7);
    animation: pulse 1.6s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}
