

.user-driver-marker {
    position: absolute;
    inset: 0;
}

.driver-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background-color: white;
    border: 2px solid #007bff;
    box-shadow: 0 0 6px rgba(0, 123, 255, 0.4);
    z-index: 1;
}

.driver-triangle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60%;
    height: 60%;
    transform: translate(-50%, -50%) rotate(0deg);
    background: linear-gradient(135deg, #007bff, #0056b3);
    clip-path: polygon(50% 0%, 100% 85%, 50% 70%, 0% 85%);
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    z-index: 2;
}
