/**
 * Border Effect: Scan
 * Creates a scanning pulse effect with varying glow intensity
 * Simulates a scanning/detection effect
 */

.content-panel.border-effect-scan {
    border: 2px solid var(--theme-primary);
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 5px var(--theme-glow);
    }

    50% {
        box-shadow: 0 0 20px var(--theme-glow);
    }

    100% {
        box-shadow: 0 0 5px var(--theme-glow);
    }
}
