/* Disable all glitch/flicker/pulsing animations - Apply smooth reflection effects only */

/* Remove all animations from brand logo */
.brand-logo,
.brand-logo::before {
    animation: none !important;
}

/* Remove pulsing from classified text */
.classified-text {
    animation: none !important;
}

/* Remove pulsing from data values */
.data-value.active {
    animation: none !important;
}

/* Remove border glow animation from panels */
.panel {
    animation: none !important;
}

/* Keep cursor blink only */
.cursor {
    animation: blink 1s infinite;
}

/* Remove shimmer from header */
.page-header::after {
    animation: none !important;
}

/* Remove pulse from status dots */
.status-dot.active {
    animation: none !important;
}

/* Remove pulse from custom.css download button icon */
.download-btn .btn-icon {
    animation: none !important;
}