/* Maritime ERP Mockup — shared overrides */
/* Tailwind CDN handles ~95% of styling. This file is for things Tailwind CDN can't do inline. */

/* Smooth scrollbar */
* { scrollbar-width: thin; scrollbar-color: #e5e7eb transparent; }
*::-webkit-scrollbar { width: 5px; height: 5px; }
*::-webkit-scrollbar-track { background: transparent; }
*::-webkit-scrollbar-thumb { background: #e5e7eb; border-radius: 9999px; }

/* Sidebar fixed height fill */
.sidebar-fill { height: calc(100vh - 3rem); }

/* Table row cursor */
tbody tr { cursor: default; }
tbody tr.clickable { cursor: pointer; }

/* Active sidebar item indicator */
.nav-active { background-color: #f3f4f6; font-weight: 500; color: #111827; }
.nav-active svg { color: #4b5563; }

/* Prevent text selection on UI chrome */
.no-select { user-select: none; }
