/* Dashboard custom styles */
.animate-slide-in { animation: slideIn 0.3s ease-out; }
@keyframes slideIn { from { opacity: 0; transform: translateX(-50px); } to { opacity: 1; transform: translateX(0); } }
.stat-card-glow { position: relative; overflow: hidden; }
.stat-card-glow::after { content: ''; position: absolute; top: -50%; right: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 60%); pointer-events: none; }
