/* VesselTable — fixed-layout column sizing, column resizer, and scrollbar styling.
   Merged from two inline <style> blocks. The table-fixed/col-resizer rules previously rendered
   only when StableColumnLayout=true, but their selectors only match that mode's markup, so
   always-loading is behavior-equivalent. :where(.dark) is valid standard CSS (zero specificity) —
   kept as-is, NOT converted to .dark (converting would raise specificity). */
.vessel-table table.table-fixed th, .vessel-table table.table-fixed td {
  line-height: 1.15rem;
}
.vessel-table table.table-fixed td {
  height: 40px;
}
.vessel-table .col-resizer {
  position: absolute;
  top: 0;
  right: 0;
  width: 8px;
  height: 100%;
  cursor: col-resize;
  user-select: none;
  touch-action: none;
  z-index: 40;
  display: block;
}
.vessel-table .col-resizer::after {
  content: '';
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 50%;
  width: 1px;
  background: rgba(0,0,0,0.15);
  transform: translateX(-50%);
}
:where(.dark) .vessel-table .col-resizer::after {
  background: rgba(255,255,255,0.18);
}
.vessel-table .col-resizer:hover::after,
.vessel-table .col-resizer:focus::after,
.vessel-table .col-resizer:active::after {
  background: #3b82f6;
  width: 2px;
}

.vessel-table-scroll { scrollbar-width: thin; scrollbar-color: rgba(120,120,120,0.35) transparent; }
.vessel-table-scroll:hover { scrollbar-color: rgba(120,120,120,0.55) transparent; }
.vessel-table-scroll::-webkit-scrollbar { width: 8px; }
.vessel-table-scroll::-webkit-scrollbar-track { background: transparent; }
.vessel-table-scroll::-webkit-scrollbar-thumb { background-color: rgba(120,120,120,0.35); border-radius: 4px; }
.vessel-table-scroll:hover::-webkit-scrollbar-thumb { background-color: rgba(120,120,120,0.55); }
:where(.dark) .vessel-table-scroll::-webkit-scrollbar-thumb { background-color: rgba(180,180,180,0.30); }
:where(.dark) .vessel-table-scroll:hover::-webkit-scrollbar-thumb { background-color: rgba(180,180,180,0.50); }
