/* Custom scrollbar for dark theme */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #162031; }
::-webkit-scrollbar-thumb { background: #253347; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #00b4b4; }

/* Date input color on dark background */
input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.6);
}

/* Table row transition */
tr { transition: background 0.1s; }
