/* Enterprise Aesthetic & Scanner HUD */
@keyframes laserSweep {
    0% { top: 6%; opacity: 0.7; }
    50% { top: 92%; opacity: 1; }
    100% { top: 6%; opacity: 0.7; }
}

@keyframes pulseBorder {
    0%, 100% { border-color: rgba(16, 185, 129, 0.4); box-shadow: 0 0 15px rgba(16, 185, 129, 0.2); }
    50% { border-color: rgba(16, 185, 129, 0.9); box-shadow: 0 0 30px rgba(16, 185, 129, 0.5); }
}

.scanner-laser {
    position: absolute;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #10b981, #34d399, #10b981, transparent);
    box-shadow: 0 0 15px #10b981, 0 0 30px #34d399;
    animation: laserSweep 3.2s ease-in-out infinite;
}

.scanner-target-box {
    animation: pulseBorder 3s ease-in-out infinite;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: #090d16;
}
::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
    background: #334155;
}
