/* Custom scrollbar styling - matches design from index.php */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(30, 41, 59, 0.2); /* slate-800/20 */
}

::-webkit-scrollbar-thumb {
    background: #1e293b; /* slate-800 */
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #334155; /* slate-700 */
}