.user-location-marker {
    background: transparent;
    border: none;
}

.user-location-marker__pin {
    position: relative;
    width: 24px;
    height: 24px;
}

.user-location-marker__dot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    margin: -8px 0 0 -8px;
    background: #345ebf;
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.user-location-marker__pin::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 32px;
    height: 32px;
    margin: -16px 0 0 -16px;
    background: rgba(52, 94, 191, 0.25);
    border-radius: 50%;
    animation: user-location-pulse 2s ease-out infinite;
}

@keyframes user-location-pulse {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.user-location-marker__tooltip {
    background: #345ebf;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 4px 10px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.user-location-marker__tooltip::before {
    border-top-color: #345ebf !important;
}
