/* assets/css/dashboard.css */
body { background-color: #020617; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: rgba(15, 23, 42, 0.5); }
::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.1); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(57, 255, 20, 0.5); }

select option { background-color: #0f172a; color: white; }

@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.animate-ticker {
    display: flex;
    width: max-content;
    animation: ticker-scroll 240s linear infinite;
}
