/* style.css for ip-lookup */

/* Radar-Ping Map Marker */
.radar-ping-marker {
    position: relative;
    width: 40px;
    height: 40px;
}
.ping-core {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    margin: -6px 0 0 -6px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.8);
    z-index: 2;
}
.ping-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    border: 2px solid rgba(16, 185, 129, 0.6);
    border-radius: 50%;
    animation: radar-ping 1.5s ease-out infinite;
    z-index: 1;
}
@keyframes radar-ping {
    0% {
        transform: scale(0.3);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}
