/* Custom overrides on top of Tailwind. Keep this file tiny. */

/* Slim, dark-themed scrollbars for log viewer and tables. */
.thin-scroll::-webkit-scrollbar { width: 10px; height: 10px; }
.thin-scroll::-webkit-scrollbar-track { background: transparent; }
.thin-scroll::-webkit-scrollbar-thumb { background: rgba(148,163,184,0.25); border-radius: 6px; }
.thin-scroll::-webkit-scrollbar-thumb:hover { background: rgba(148,163,184,0.4); }
.thin-scroll { scrollbar-color: rgba(148,163,184,0.3) transparent; scrollbar-width: thin; }

/* Make focused form fields more visible without overriding Tailwind utilities. */
input:focus, textarea:focus, select:focus { outline: none; }
