/* ===== Canlı Konum İkonu — Nefes Alan, Gece/Gündüz Uyumlu ===== */

.kb-user-loc {
    background: transparent !important;
    border: none !important;
    position: relative;
}

.kb-loc-ring {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 44px; height: 44px;
    border-radius: 50%;
    background: radial-gradient(circle,
        rgba(59,130,246,0.22) 0%,
        rgba(59,130,246,0.08) 55%,
        transparent 75%
    );
    animation: kb-breathe 2.2s ease-in-out infinite;
}

.kb-loc-dot {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 18px; height: 18px;
    border-radius: 50%;
    background: #3b82f6;
    border: 3px solid #ffffff;
    box-shadow:
        0 0 0 3px rgba(59,130,246,0.30),
        0 2px 10px rgba(59,130,246,0.45);
    animation: kb-dot-pulse 2.2s ease-in-out infinite;
    z-index: 2;
}

[data-theme="dark"] .kb-loc-dot {
    background: #60a5fa;
    border-color: #1e293b;
    box-shadow:
        0 0 0 3px rgba(96,165,250,0.35),
        0 2px 14px rgba(96,165,250,0.55);
}

[data-theme="dark"] .kb-loc-ring {
    background: radial-gradient(circle,
        rgba(96,165,250,0.28) 0%,
        rgba(96,165,250,0.10) 55%,
        transparent 75%
    );
}

@keyframes kb-breathe {
    0%, 100% { transform: translate(-50%,-50%) scale(0.75); opacity: 0.5; }
    50%       { transform: translate(-50%,-50%) scale(1.25); opacity: 1;   }
}

@keyframes kb-dot-pulse {
    0%, 100% {
        transform: translate(-50%,-50%) scale(1);
        box-shadow: 0 0 0 3px rgba(59,130,246,0.30), 0 2px 10px rgba(59,130,246,0.45);
    }
    50% {
        transform: translate(-50%,-50%) scale(1.12);
        box-shadow: 0 0 0 5px rgba(59,130,246,0.15), 0 4px 18px rgba(59,130,246,0.55);
    }
}
