/* ============================================
   Tackle — Blue Fish Project Portal
   Main Stylesheet
   ============================================ */

/* --- Tokens --- */
:root {
  --navy:        #0D2137;
  --navy-mid:    #163352;
  --navy-light:  #1e4570;
  --blue:        #2196D6;
  --blue-light:  #4DB3EF;
  --blue-faint:  #e8f4fc;
  --accent:      #E8523A;
  --white:       #ffffff;
  --off-white:   #f5f7fa;
  --border:      #d8e2ec;
  --text:        #1a2e42;
  --text-mid:    #4a6280;
  --text-light:  #8aa0b8;
  --green:       #22c55e;
  --yellow:      #f59e0b;
  --red:         #ef4444;
  --radius:      8px;
  --radius-sm:   5px;
  --shadow:      0 2px 12px rgba(13,33,55,.10);
  --shadow-md:   0 6px 24px rgba(13,33,55,.15);
  --nav-width:   220px;
  --font-sans:   'Inter', system-ui, sans-serif;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 15px; }
body { font-family: var(--font-sans); color: var(--text); background: var(--off-white); line-height: 1.5; }
a { color: var(--blue); text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ============================================
   LOGIN
   ============================================ */
.login-body {
  background: var(--navy);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: radial-gradient(ellipse at 20% 50%, rgba(33,150,214,.15) 0%, transparent 60%),
                    radial-gradient(ellipse at 80% 20%, rgba(33,150,214,.08) 0%, transparent 50%);
}
.login-wrap { width: 100%; max-width: 420px; padding: 24px; }
.login-card {
  background: var(--navy-mid);
  border-radius: 16px;
  padding: 48px 40px 40px;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow-md);
}
.login-logo { margin-bottom: 12px; }
.login-logo img { height: 32px; }
.login-tag {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 24px;
}
.login-title { font-size: 1.6rem; font-weight: 700; color: var(--white); margin-bottom: 28px; }
.login-form .field { margin-bottom: 18px; }
.login-form label { display: block; font-size: .8rem; font-weight: 600; color: rgba(255,255,255,.6); margin-bottom: 6px; letter-spacing: .04em; text-transform: uppercase; }
.login-form input {
  width: 100%;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--white);
  font-size: .95rem;
  transition: border-color .2s;
}
.login-form input::placeholder { color: rgba(255,255,255,.3); }
.login-form input:focus { outline: none; border-color: var(--blue); background: rgba(255,255,255,.1); }
.login-note { font-size: .75rem; color: rgba(255,255,255,.3); margin-top: 20px; text-align: center; }
.login-note code { background: rgba(255,255,255,.1); padding: 2px 6px; border-radius: 3px; color: rgba(255,255,255,.6); }

/* ============================================
   APP LAYOUT
   ============================================ */
.app-body { display: flex; min-height: 100vh; }

/* --- Nav --- */
.app-nav {
  width: var(--nav-width);
  background: var(--navy);
  display: flex;
  flex-direction: column;
  padding: 0;
  position: fixed;
  top: 0; left: 0; bottom: 0;
  z-index: 100;
  background-image: radial-gradient(ellipse at 50% 0%, rgba(33,150,214,.12) 0%, transparent 70%);
}
.nav-brand {
  padding: 24px 20px 20px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo { height: 22px; }
.nav-portal-name {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  padding-left: 2px;
  border-left: 1px solid rgba(255,255,255,.15);
}
.nav-links {
  padding: 16px 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,.55);
  font-size: .875rem;
  font-weight: 500;
  transition: background .15s, color .15s;
}
.nav-link:hover { background: rgba(255,255,255,.06); color: rgba(255,255,255,.85); }
.nav-link.active { background: rgba(33,150,214,.2); color: var(--blue-light); }
.nav-link svg { flex-shrink: 0; }
.nav-user {
  padding: 16px 20px;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-user-name { font-size: .8rem; font-weight: 600; color: rgba(255,255,255,.5); }
.nav-logout { color: rgba(255,255,255,.3); transition: color .15s; }
.nav-logout:hover { color: var(--accent); }

/* ============================================
   BOARD
   ============================================ */
.board-main {
  margin-left: var(--nav-width);
  flex: 1;
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow: hidden;
}
.board-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 16px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.toolbar-right { display: flex; gap: 10px; align-items: center; }
.page-title { font-size: 1.25rem; font-weight: 700; color: var(--text); }
.board-scroll { flex: 1; overflow-x: auto; overflow-y: hidden; padding: 20px 20px 24px; }
.board-columns {
  display: flex;
  gap: 14px;
  height: 100%;
  min-width: max-content;
}

/* --- Column --- */
.board-column {
  width: 270px;
  flex-shrink: 0;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 120px);
}
.column-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px 12px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.column-title { font-size: .8rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--text-mid); }
.column-count {
  font-size: .72rem;
  font-weight: 700;
  background: var(--off-white);
  color: var(--text-mid);
  border-radius: 20px;
  padding: 2px 8px;
}
.column-cards {
  flex: 1;
  overflow-y: auto;
  padding: 10px 10px 4px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 60px;
}
.column-cards.drag-over { background: var(--blue-faint); border-radius: 6px; }
.column-add-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
  padding: 10px 16px;
  border: none;
  background: none;
  color: var(--text-light);
  font-size: .8rem;
  font-weight: 500;
  border-top: 1px solid var(--border);
  transition: color .15s, background .15s;
  flex-shrink: 0;
  border-radius: 0 0 12px 12px;
}
.column-add-btn:hover { background: var(--off-white); color: var(--text-mid); }

/* --- Card Tile --- */
.card-tile {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 12px 10px;
  cursor: pointer;
  transition: box-shadow .15s, border-color .15s, transform .1s;
  position: relative;
  border-left: 3px solid transparent;
}
.card-tile:hover { box-shadow: var(--shadow); border-color: #c8d6e5; }
.card-tile.dragging { opacity: .5; transform: rotate(2deg); }
.card-tile.priority-high  { border-left-color: var(--red); }
.card-tile.priority-med   { border-left-color: var(--yellow); }
.card-tile.priority-low   { border-left-color: var(--green); }
.card-tile.budget-over  { background: #fff5f5; }
.card-tile.budget-near  { background: #fffbeb; }
.card-tile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.card-client {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-faint);
  border-radius: 4px;
  padding: 2px 7px;
  max-width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.card-priority-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--border);
}
.priority-high .card-priority-dot  { background: var(--red); }
.priority-med  .card-priority-dot  { background: var(--yellow); }
.priority-low  .card-priority-dot  { background: var(--green); }
.card-title { font-size: .875rem; font-weight: 600; color: var(--text); line-height: 1.4; margin-bottom: 10px; }
.card-tile-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.card-hours { font-size: .72rem; color: var(--text-mid); font-weight: 500; }
.hours-over { color: var(--red); font-weight: 700; }
.hours-near { color: var(--yellow); font-weight: 700; }
.card-due, .card-overdue {
  font-size: .7rem;
  display: flex;
  align-items: center;
  gap: 3px;
  color: var(--text-light);
}
.card-overdue { color: var(--red); font-weight: 600; }
.card-avatar {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--navy-mid);
  color: var(--white);
  font-size: .65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}

/* ============================================
   PAGE LAYOUT (non-board)
   ============================================ */
.page-main { margin-left: var(--nav-width); padding: 28px 32px; flex: 1; }
.page-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 16px;
  flex-wrap: wrap;
}
.split-layout { display: grid; grid-template-columns: 1fr 360px; gap: 24px; align-items: start; }
.split-main { display: flex; flex-direction: column; gap: 20px; }
.split-side { display: flex; flex-direction: column; gap: 20px; }
.card-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}
.block-title { font-size: .8rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--text-mid); margin-bottom: 18px; }

/* ============================================
   FORMS & FIELDS
   ============================================ */
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.field input, .field select, .field textarea {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 9px 12px;
  font-size: .9rem;
  color: var(--text);
  transition: border-color .15s;
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(33,150,214,.12);
}
.field textarea { resize: vertical; }
.field-row { display: flex; gap: 12px; align-items: flex-end; }
.field-row .field { flex: 1; }
.field-grow { flex: 2 !important; }
.field-inline { flex-direction: row !important; align-items: center !important; gap: 10px !important; }
.req { color: var(--accent); }

/* Toggle */
.toggle-label { display: flex; align-items: center; gap: 10px; cursor: pointer; font-size: .875rem; font-weight: 500; color: var(--text); }
.toggle-label input[type=checkbox] { display: none; }
.toggle {
  width: 36px; height: 20px;
  background: var(--border);
  border-radius: 20px;
  position: relative;
  transition: background .2s;
  flex-shrink: 0;
}
.toggle::after {
  content: '';
  position: absolute;
  width: 14px; height: 14px;
  background: var(--white);
  border-radius: 50%;
  top: 3px; left: 3px;
  transition: transform .2s;
}
.toggle-label input:checked + .toggle { background: var(--blue); }
.toggle-label input:checked + .toggle::after { transform: translateX(16px); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  font-size: .875rem; font-weight: 600;
  border: 1.5px solid transparent;
  transition: background .15s, border-color .15s, color .15s, box-shadow .15s;
  line-height: 1;
  white-space: nowrap;
}
.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: #1a82c2; box-shadow: 0 2px 8px rgba(33,150,214,.3); }
.btn-outline { background: transparent; border-color: var(--border); color: var(--text-mid); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.btn-ghost { background: transparent; border-color: transparent; color: var(--text-mid); }
.btn-ghost:hover { background: var(--off-white); color: var(--text); }
.btn-danger { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-danger:hover { background: #dc2626; }
.btn-full { width: 100%; justify-content: center; }
.btn-sm { padding: 6px 12px; font-size: .78rem; }

/* ============================================
   MODALS
   ============================================ */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(13,33,55,.6);
  backdrop-filter: blur(3px);
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal-overlay-large { align-items: flex-start; padding-top: 40px; }
.modal {
  background: var(--white);
  border-radius: 14px;
  width: 100%; max-width: 560px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  max-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
}
.modal-large { max-width: 860px; }
.modal-sm    { max-width: 420px; }
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.modal-title { font-size: 1rem; font-weight: 700; color: var(--text); }
.modal-header-actions { display: flex; align-items: center; gap: 10px; }
.modal-close {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: none;
  background: var(--off-white);
  font-size: 1.2rem; line-height: 1;
  color: var(--text-mid);
  display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.modal-close:hover { background: var(--border); }
.modal-body {
  padding: 24px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.modal-body-split {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 0;
  padding: 0;
}
.modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding-top: 8px;
}
.modal-desc { font-size: .875rem; color: var(--text-mid); line-height: 1.6; }

/* Card Detail Panels */
.detail-main {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow-y: auto;
  max-height: calc(100vh - 180px);
}
.detail-sidebar {
  padding: 24px;
  background: var(--off-white);
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow-y: auto;
  max-height: calc(100vh - 180px);
}
.detail-label { font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--text-light); margin-bottom: 4px; }
.detail-value { font-size: .9rem; color: var(--text); }
.detail-row { display: flex; flex-direction: column; }
.detail-meta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.detail-desc { font-size: .9rem; color: var(--text-mid); line-height: 1.7; white-space: pre-line; }

/* Hours bar */
.hours-bar-wrap { margin-bottom: 4px; }
.hours-bar-track {
  height: 6px;
  background: var(--border);
  border-radius: 6px;
  overflow: hidden;
  margin-top: 8px;
}
.hours-bar-fill {
  height: 100%;
  border-radius: 6px;
  background: var(--green);
  transition: width .4s ease;
}
.hours-bar-fill.near { background: var(--yellow); }
.hours-bar-fill.over { background: var(--red); }
.hours-bar-label { font-size: .8rem; color: var(--text-mid); display: flex; justify-content: space-between; margin-top: 4px; }

/* Time entries list */
.time-entry-list { display: flex; flex-direction: column; gap: 8px; }
.time-entry-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .82rem;
}
.time-entry-meta { flex: 1; }
.time-entry-who { font-weight: 600; color: var(--text); }
.time-entry-note { color: var(--text-mid); }
.time-entry-date { font-size: .72rem; color: var(--text-light); }
.time-entry-dur { font-weight: 700; color: var(--blue); white-space: nowrap; }
.time-entry-del { background: none; border: none; color: var(--text-light); padding: 2px 4px; border-radius: 3px; }
.time-entry-del:hover { color: var(--red); background: #fff5f5; }

/* Notes */
.note-list { display: flex; flex-direction: column; gap: 10px; }
.note-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 10px 12px; }
.note-meta { font-size: .72rem; color: var(--text-light); margin-bottom: 4px; }
.note-text { font-size: .875rem; color: var(--text); line-height: 1.6; white-space: pre-line; }
.note-input-row { display: flex; gap: 8px; align-items: flex-end; }
.note-input-row textarea { flex: 1; height: 60px; resize: none; }

/* ============================================
   TIMER
   ============================================ */
.timer-display {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#timerClock {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  font-variant-numeric: tabular-nums;
  letter-spacing: .05em;
}
.timer-controls { display: flex; gap: 8px; }

/* ============================================
   BULK ADD
   ============================================ */
.bulk-preview {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-height: 160px;
  overflow-y: auto;
  padding: 2px 0;
}
.bulk-line {
  font-size: .82rem;
  padding: 5px 10px;
  background: var(--blue-faint);
  border-radius: 4px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 6px;
}
.bulk-line::before {
  content: '→';
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================
   REPORTS
   ============================================ */
.report-tabs { display: flex; gap: 4px; }
.tab-btn {
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-mid);
  background: var(--white);
  border: 1px solid var(--border);
  transition: all .15s;
}
.tab-btn:hover { border-color: var(--blue); color: var(--blue); }
.tab-btn.active { background: var(--navy); color: var(--white); border-color: var(--navy); }
.report-filters { margin-bottom: 24px; }
.filter-form { display: flex; gap: 12px; align-items: flex-end; }
.filter-form .field { width: 160px; }
.report-week-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}
.report-week-header h2 { font-size: 1rem; font-weight: 700; color: var(--text); }
.week-totals { display: flex; gap: 24px; }
.week-stat { display: flex; flex-direction: column; align-items: flex-end; }
.week-stat-value { font-size: 1.2rem; font-weight: 700; color: var(--text); }
.week-stat-label { font-size: .7rem; text-transform: uppercase; letter-spacing: .05em; color: var(--text-light); font-weight: 600; }
.report-period { font-size: .875rem; color: var(--text-mid); font-weight: 600; margin-bottom: 20px; }
.report-section { margin-bottom: 28px; }
.report-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}
.report-client-name { font-size: .85rem; font-weight: 700; }
.report-client-total { font-size: .85rem; font-weight: 700; color: var(--blue-light); }
.report-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  overflow: hidden;
  font-size: .83rem;
}
.report-table thead th {
  background: var(--off-white);
  padding: 8px 14px;
  text-align: left;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
}
.report-table tbody td {
  padding: 9px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.report-table tbody tr:last-child td { border-bottom: none; }
.report-table tbody tr:hover { background: var(--off-white); }
.report-table-full { border-radius: var(--radius-sm); border: 1px solid var(--border); }
.report-table-full thead th:first-child { border-radius: var(--radius-sm) 0 0 0; }

/* ============================================
   CLIENTS & SETTINGS
   ============================================ */
.client-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.client-row:last-child { border-bottom: none; }
.client-inactive .client-name-input { color: var(--text-light); }
.client-rename-form { display: flex; align-items: center; gap: 8px; flex: 1; }
.client-name-input {
  border: 1px solid transparent;
  background: none;
  padding: 6px 8px;
  border-radius: 4px;
  font-size: .9rem;
  color: var(--text);
  flex: 1;
  transition: border-color .15s, background .15s;
}
.client-name-input:hover { border-color: var(--border); background: var(--off-white); }
.client-name-input:focus { outline: none; border-color: var(--blue); background: var(--white); }
.user-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.user-row:last-child { border-bottom: none; }
.user-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--navy-mid);
  color: var(--white);
  font-size: .875rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.user-info { flex: 1; }
.user-name { font-size: .9rem; font-weight: 600; color: var(--text); }
.user-email { font-size: .78rem; color: var(--text-mid); }

/* ============================================
   BADGES & ALERTS
   ============================================ */
.badge {
  display: inline-flex; align-items: center;
  padding: 2px 9px;
  border-radius: 20px;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.badge-green { background: #dcfce7; color: #166534; }
.badge-gray  { background: var(--off-white); color: var(--text-mid); border: 1px solid var(--border); }
.badge-blue  { background: var(--blue-faint); color: var(--blue); }
.alert {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: .875rem;
  font-weight: 500;
  margin-bottom: 20px;
}
.alert-success { background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }
.alert-error   { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }
.empty-state { text-align: center; color: var(--text-light); padding: 40px 20px; font-size: .9rem; }
.text-red   { color: var(--red); }
.text-green { color: var(--green); }

/* ============================================
   SCROLLBARS
   ============================================ */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: #b0c4d8; }
