/* ============================================================
   WorkSpace — Main Stylesheet
   Inspired by monday.com aesthetics
   ============================================================ */

:root {
  --bg:          #1c1f2e;
  --bg2:         #252838;
  --bg3:         #2d3147;
  --sidebar-bg:  #1a1d2e;
  --panel:       #20233a;
  --border:      rgba(255,255,255,0.07);
  --border2:     rgba(255,255,255,0.13);
  --text:        #e8e9f0;
  --text2:       #9ea0b5;
  --text3:       #6b6e85;
  --accent:      #6c63ff;
  --accent2:     #8b83ff;
  --accent-hover:#5a51ee;
  --red:         #e2445c;
  --green:       #00c875;
  --orange:      #fdab3d;
  --blue:        #579bfc;
  --teal:        #2bcbba;
  --pink:        #ff6584;
  --radius:      8px;
  --radius-lg:   12px;
  --shadow:      0 4px 20px rgba(0,0,0,0.4);
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.25);
  --trans:       all 0.18s ease;
  --font:        'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --sidebar-w:   240px;
  --topbar-h:    54px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-size: 14px;
  line-height: 1.5;
  overflow: hidden;
}
a { color: var(--accent2); text-decoration: none; }
a:hover { color: var(--accent); }
button { cursor: pointer; font-family: var(--font); }
input, textarea, select { font-family: var(--font); }
::selection { background: var(--accent); color: #fff; }
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--bg3); border-radius: 3px; }

/* ============================================================
   LAYOUT
   ============================================================ */
.app-shell {
  display: flex;
  height: 100vh;
  overflow: hidden;
}

/* ---- SIDEBAR ---- */
.sidebar {
  width: var(--sidebar-w);
  min-width: var(--sidebar-w);
  background: var(--sidebar-bg);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: width 0.25s;
  z-index: 50;
}
.sidebar-logo {
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--border);
  min-height: var(--topbar-h);
}
.sidebar-logo .logo-mark {
  width: 30px; height: 30px;
  background: linear-gradient(135deg, var(--accent), #a855f7);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; color: #fff;
  flex-shrink: 0;
}
.sidebar-logo .logo-text {
  font-size: 16px; font-weight: 700;
  background: linear-gradient(135deg, #fff, var(--accent2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.sidebar-scroll {
  flex: 1; overflow-y: auto; padding: 8px 0;
}
.sidebar-section { margin-bottom: 4px; }
.sidebar-section-title {
  padding: 6px 18px 4px;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--text3);
}
.sidebar-item {
  display: flex; align-items: center; gap: 10px;
  padding: 7px 18px;
  color: var(--text2);
  border-radius: 0;
  transition: var(--trans);
  cursor: pointer;
  font-size: 13.5px;
  position: relative;
  user-select: none;
}
.sidebar-item:hover { background: rgba(255,255,255,0.05); color: var(--text); }
.sidebar-item.active {
  background: rgba(108,99,255,0.18);
  color: var(--accent2);
}
.sidebar-item.active::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--accent);
  border-radius: 0 3px 3px 0;
}
.sidebar-item .item-dot {
  width: 10px; height: 10px; border-radius: 3px; flex-shrink: 0;
}
.sidebar-item .item-icon { font-size: 16px; width: 20px; text-align: center; }
.sidebar-item .item-badge {
  margin-left: auto; background: var(--bg3);
  padding: 1px 7px; border-radius: 10px; font-size: 11px;
}
.sidebar-footer {
  border-top: 1px solid var(--border);
  padding: 10px 14px;
}
.sidebar-user {
  display: flex; align-items: center; gap: 10px;
  padding: 8px;
  border-radius: var(--radius);
  cursor: pointer; transition: var(--trans);
}
.sidebar-user:hover { background: rgba(255,255,255,0.05); }
.sidebar-user .user-info { flex: 1; min-width: 0; }
.sidebar-user .user-name { font-size: 13px; font-weight: 600; truncate: ellipsis; white-space: nowrap; overflow: hidden; }
.sidebar-user .user-role { font-size: 11px; color: var(--text3); }

/* ---- MAIN ---- */
.main-wrap {
  flex: 1; display: flex; flex-direction: column; overflow: hidden; min-width: 0;
  position: relative;
}
.topbar {
  height: var(--topbar-h);
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center;
  padding: 0 20px; gap: 12px;
  flex-shrink: 0;
}
.topbar-title { font-size: 16px; font-weight: 600; flex: 1; }
.page-content {
  flex: 1; overflow: auto; padding: 24px;
}

/* ============================================================
   AVATAR
   ============================================================ */
.avatar {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: #fff;
  flex-shrink: 0;
  user-select: none;
}
.avatar-sm { width: 24px; height: 24px; font-size: 10px; }
.avatar-lg { width: 40px; height: 40px; font-size: 16px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 16px; border-radius: var(--radius);
  font-size: 13.5px; font-weight: 500;
  border: none; transition: var(--trans);
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); }
.btn-secondary { background: var(--bg3); color: var(--text); border: 1px solid var(--border2); }
.btn-secondary:hover { background: var(--bg2); border-color: var(--border2); }
.btn-danger { background: var(--red); color: #fff; }
.btn-danger:hover { background: #c73450; }
.btn-ghost { background: transparent; color: var(--text2); }
.btn-ghost:hover { background: rgba(255,255,255,0.06); color: var(--text); }
.btn-icon {
  width: 30px; height: 30px; padding: 0;
  background: transparent; border: none; color: var(--text3);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  transition: var(--trans);
}
.btn-icon:hover { background: rgba(255,255,255,0.07); color: var(--text); }
.btn-sm { padding: 4px 12px; font-size: 12.5px; }
.btn-xs { padding: 2px 9px; font-size: 11.5px; }

/* ============================================================
   FORMS
   ============================================================ */
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-label { font-size: 12.5px; font-weight: 500; color: var(--text2); }
.form-control {
  background: var(--bg3); border: 1px solid var(--border2);
  border-radius: var(--radius); color: var(--text);
  padding: 8px 12px; font-size: 13.5px;
  transition: var(--trans); outline: none; width: 100%;
}
.form-control:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(108,99,255,0.15); }
.form-control::placeholder { color: var(--text3); }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%239ea0b5' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"); background-repeat: no-repeat; background-position: right 10px center; background-size: 14px; padding-right: 32px; }
.form-hint { font-size: 11.5px; color: var(--text3); }
.form-error { font-size: 12px; color: var(--red); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
}
.card-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px;
}
.card-body { padding: 20px; }

/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.65); backdrop-filter: blur(3px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; pointer-events: none; transition: opacity 0.2s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--bg2); border: 1px solid var(--border2);
  border-radius: var(--radius-lg); width: 100%; max-width: 480px;
  box-shadow: var(--shadow); transform: translateY(-16px); transition: transform 0.2s;
}
.modal-overlay.open .modal { transform: translateY(0); }
.modal-header {
  padding: 18px 22px 16px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.modal-title { font-size: 15px; font-weight: 600; }
.modal-body { padding: 20px 22px; display: flex; flex-direction: column; gap: 14px; }
.modal-footer {
  padding: 14px 22px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: flex-end; gap: 8px;
}
.modal-lg { max-width: 640px; }

/* ============================================================
   BADGE / CHIPS
   ============================================================ */
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 2px 9px; border-radius: 20px;
  font-size: 11.5px; font-weight: 600; white-space: nowrap;
}
.badge-superadmin { background: rgba(168,85,247,0.2); color: #c084fc; }
.badge-admin { background: rgba(108,99,255,0.2); color: var(--accent2); }
.badge-member { background: rgba(158,160,181,0.15); color: var(--text2); }
.badge-active { background: rgba(0,200,117,0.15); color: var(--green); }
.badge-inactive { background: rgba(226,68,92,0.15); color: var(--red); }

/* ============================================================
   TABLE
   ============================================================ */
.data-table { width: 100%; border-collapse: collapse; }
.data-table th {
  padding: 10px 14px; text-align: left;
  font-size: 11.5px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.05em; color: var(--text3);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.data-table td {
  padding: 11px 14px;
  border-bottom: 1px solid var(--border);
  font-size: 13.5px;
}
.data-table tr:hover td { background: rgba(255,255,255,0.025); }
.data-table tr:last-child td { border-bottom: none; }

/* ============================================================
   WORKSPACE / BOARD CARDS
   ============================================================ */
.ws-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 16px;
}
.ws-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); cursor: pointer;
  transition: var(--trans); overflow: hidden;
}
.ws-card:hover {
  border-color: var(--border2);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.ws-card-stripe { height: 5px; }
.ws-card-body { padding: 14px 16px; }
.ws-card-name { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.ws-card-desc { font-size: 12.5px; color: var(--text3); margin-bottom: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ws-card-meta { display: flex; align-items: center; gap: 12px; font-size: 12px; color: var(--text3); }

/* ============================================================
   BOARD TABLE (the main board view)
   ============================================================ */
.board-wrap { height: 100%; display: flex; flex-direction: column; }
.board-topbar {
  padding: 12px 20px; display: flex; align-items: center;
  gap: 10px; border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.board-content { flex: 1; overflow: auto; padding: 16px 20px; }

.board-group { margin-bottom: 24px; }
.board-group-header {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 0; padding: 6px 8px;
  border-radius: var(--radius) var(--radius) 0 0;
  user-select: none;
}
.board-group-name {
  font-size: 13.5px; font-weight: 700;
  padding: 2px 8px; border-radius: 4px;
  cursor: pointer;
}
.board-group-count { font-size: 12px; color: var(--text3); }
.board-group-actions { margin-left: auto; display: flex; gap: 2px; opacity: 0; transition: var(--trans); }
.board-group:hover .board-group-actions { opacity: 1; }

/* Board table */
.board-table-wrap { overflow-x: auto; }
.board-table {
  border-collapse: collapse; min-width: 100%;
  border: 1px solid var(--border);
  border-radius: 0 var(--radius) var(--radius) var(--radius);
  overflow: hidden;
}
.board-table thead th {
  background: var(--bg3);
  padding: 7px 10px;
  font-size: 11.5px; font-weight: 600;
  color: var(--text2);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border2);
  white-space: nowrap;
  position: relative;
  user-select: none;
}
.board-table thead th:first-child { min-width: 280px; width: 280px; }
.board-table thead th .col-resize {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 5px; cursor: col-resize;
  background: transparent; transition: var(--trans);
}
.board-table thead th .col-resize:hover { background: var(--accent); }
.board-table thead th .col-title {
  display: flex; align-items: center; gap: 6px; overflow: hidden;
}
.board-table thead th .col-icon {
  font-size: 12px; color: var(--text3); flex-shrink: 0;
}
.board-table thead th .col-name { overflow: hidden; text-overflow: ellipsis; }
.board-table td {
  padding: 0;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
  height: 36px;
}
.board-table tr:hover td { background: rgba(255,255,255,0.025); }
.board-table tr:last-child td { border-bottom: none; }

/* Row name cell */
.row-name-cell {
  display: flex; align-items: center; gap: 6px;
  padding: 0 10px; height: 36px;
  position: relative;
}
.row-color-bar {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px;
}
.row-name-input {
  background: transparent; border: none; outline: none;
  color: var(--text); font-size: 13.5px; width: 100%;
  padding-left: 8px;
}
.row-name-input:focus { color: var(--text); }
.row-actions { margin-left: auto; display: flex; gap: 2px; opacity: 0; transition: var(--trans); }
.board-table tr:hover .row-actions { opacity: 1; }

/* Cell types */
.cell-wrap { height: 36px; display: flex; align-items: center; justify-content: center; padding: 0 8px; }
.cell-text-input {
  background: transparent; border: none; outline: none;
  color: var(--text); font-size: 13.5px; width: 100%; text-align: center;
}
.cell-text-input:focus { background: var(--bg3); }

.status-chip {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 3px 12px; border-radius: 4px;
  font-size: 12px; font-weight: 600; cursor: pointer;
  transition: var(--trans); white-space: nowrap;
  min-width: 90px; text-align: center;
}
.status-chip:hover { filter: brightness(1.15); }

.status-dropdown {
  position: absolute; z-index: 200;
  background: var(--bg2); border: 1px solid var(--border2);
  border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 6px;
  min-width: 160px;
}
.status-option {
  padding: 6px 10px; border-radius: 4px;
  cursor: pointer; display: flex; align-items: center; gap: 8px;
  font-size: 12.5px;
}
.status-option:hover { background: rgba(255,255,255,0.07); }

.checkbox-cell {
  width: 18px; height: 18px; cursor: pointer;
  accent-color: var(--accent);
}
.date-cell { font-size: 12.5px; color: var(--text); background: transparent; border: none; outline: none; text-align: center; width: 100%; cursor: pointer; }
.date-cell:focus { background: var(--bg3); }
.number-cell { text-align: right; }

.person-chip {
  display: flex; align-items: center; gap: 4px;
  font-size: 12px; cursor: pointer;
}

/* Add row button */
.add-row-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 12px; color: var(--text3);
  font-size: 13px; cursor: pointer;
  border: 1px dashed var(--border2);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  transition: var(--trans);
  background: transparent;
  width: 100%;
}
.add-row-btn:hover { background: rgba(255,255,255,0.03); color: var(--text); }

/* Add column button */
.add-col-btn {
  background: transparent; border: none; color: var(--text3);
  padding: 7px 14px; cursor: pointer; font-size: 20px;
  transition: var(--trans);
}
.add-col-btn:hover { color: var(--text); background: rgba(255,255,255,0.05); }

/* Add group button */
.add-group-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 14px; color: var(--text3);
  font-size: 13px; cursor: pointer;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  transition: var(--trans); background: transparent; width: auto;
}
.add-group-btn:hover { border-color: var(--accent); color: var(--accent2); }

/* ============================================================
   COLOR PICKER (palette)
   ============================================================ */
.color-picker { display: flex; flex-wrap: wrap; gap: 7px; }
.color-swatch {
  width: 26px; height: 26px; border-radius: 50%;
  cursor: pointer; border: 2px solid transparent; transition: var(--trans);
}
.color-swatch:hover, .color-swatch.selected {
  border-color: #fff; transform: scale(1.15);
}

/* ============================================================
   TOAST
   ============================================================ */
.toast-container {
  position: fixed; bottom: 24px; right: 24px;
  z-index: 9999; display: flex; flex-direction: column; gap: 8px;
}
.toast {
  background: var(--bg3); border: 1px solid var(--border2);
  border-radius: var(--radius); padding: 12px 18px;
  font-size: 13.5px; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 10px;
  animation: toast-in 0.25s ease;
  max-width: 320px;
}
.toast-success { border-left: 3px solid var(--green); }
.toast-error   { border-left: 3px solid var(--red); }
.toast-info    { border-left: 3px solid var(--blue); }
@keyframes toast-in { from { opacity:0; transform: translateX(20px); } to { opacity:1; transform: translateX(0); } }

/* ============================================================
   DROPDOWN MENU
   ============================================================ */
.dropdown { position: relative; display: inline-block; }
.dropdown-menu {
  position: absolute; right: 0; top: calc(100% + 4px);
  background: var(--bg2); border: 1px solid var(--border2);
  border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 5px; z-index: 300; min-width: 160px;
  display: none;
}
.dropdown-menu.show { display: block; }
.dropdown-item {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 12px; border-radius: 5px;
  font-size: 13px; color: var(--text);
  cursor: pointer; transition: var(--trans);
}
.dropdown-item:hover { background: rgba(255,255,255,0.07); }
.dropdown-item.danger { color: var(--red); }
.dropdown-item.danger:hover { background: rgba(226,68,92,0.12); }
.dropdown-divider { height: 1px; background: var(--border); margin: 4px 0; }

/* ============================================================
   EMPTY STATES
   ============================================================ */
.empty-state {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; padding: 60px 20px; gap: 14px;
  color: var(--text3); text-align: center;
}
.empty-state .empty-icon { font-size: 48px; opacity: 0.5; }
.empty-state h3 { font-size: 16px; color: var(--text2); }
.empty-state p { font-size: 13.5px; max-width: 280px; line-height: 1.6; }

/* ============================================================
   LOADING
   ============================================================ */
.spinner {
  width: 20px; height: 20px; border-radius: 50%;
  border: 2px solid var(--border2);
  border-top-color: var(--accent);
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   AUTH PAGES
   ============================================================ */
.auth-page {
  min-height: 100vh; background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.auth-card {
  background: var(--bg2); border: 1px solid var(--border2);
  border-radius: 16px; padding: 40px;
  width: 100%; max-width: 420px; box-shadow: var(--shadow);
}
.auth-logo {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 32px; justify-content: center;
}
.auth-logo .logo-mark {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--accent), #a855f7);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 18px; color: #fff;
}
.auth-logo .logo-name { font-size: 22px; font-weight: 700; }
.auth-title { font-size: 20px; font-weight: 700; margin-bottom: 6px; }
.auth-sub { font-size: 13.5px; color: var(--text3); margin-bottom: 28px; }
.auth-form { display: flex; flex-direction: column; gap: 16px; }
.auth-footer { margin-top: 20px; text-align: center; font-size: 13px; color: var(--text3); }
.auth-alert {
  padding: 10px 14px; border-radius: var(--radius);
  font-size: 13px; margin-bottom: 12px;
}
.auth-alert-error { background: rgba(226,68,92,0.15); color: var(--red); border: 1px solid rgba(226,68,92,0.3); }
.auth-alert-success { background: rgba(0,200,117,0.15); color: var(--green); border: 1px solid rgba(0,200,117,0.3); }

/* ============================================================
   SEARCH BAR
   ============================================================ */
.search-wrap { position: relative; }
.search-wrap .search-icon { position: absolute; left: 10px; top: 50%; transform: translateY(-50%); color: var(--text3); font-size: 14px; }
.search-input { padding-left: 32px !important; }

/* ============================================================
   TABS
   ============================================================ */
.tabs { display: flex; gap: 4px; border-bottom: 1px solid var(--border); padding-bottom: 0; margin-bottom: 20px; }
.tab-btn {
  padding: 8px 16px; background: transparent; border: none;
  color: var(--text3); font-size: 13.5px; cursor: pointer;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  transition: var(--trans); border-radius: var(--radius) var(--radius) 0 0;
}
.tab-btn:hover { color: var(--text); }
.tab-btn.active { color: var(--accent2); border-bottom-color: var(--accent); }

/* ============================================================
   TOOLTIP
   ============================================================ */
[data-tooltip] { position: relative; }
[data-tooltip]:hover::after {
  content: attr(data-tooltip);
  position: absolute; bottom: calc(100% + 6px); left: 50%;
  transform: translateX(-50%);
  background: var(--bg3); color: var(--text);
  padding: 4px 10px; border-radius: 5px; font-size: 12px;
  white-space: nowrap; pointer-events: none; z-index: 400;
  border: 1px solid var(--border2);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .sidebar { position: fixed; left: -100%; transition: left 0.25s; }
  .sidebar.open { left: 0; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   UTILITIES
   ============================================================ */
.flex { display: flex; } .items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 8px; } .gap-3 { gap: 12px; } .gap-4 { gap: 16px; }
.mt-1 { margin-top: 4px; } .mt-2 { margin-top: 8px; } .mt-3 { margin-top: 12px; } .mt-4 { margin-top: 16px; }
.mb-2 { margin-bottom: 8px; } .mb-3 { margin-bottom: 12px; } .mb-4 { margin-bottom: 16px; }
.text-sm { font-size: 12.5px; } .text-xs { font-size: 11.5px; }
.text-muted { color: var(--text3); } .text-secondary { color: var(--text2); }
.text-accent { color: var(--accent2); }
.font-600 { font-weight: 600; }
.truncate { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.w-full { width: 100%; } .h-full { height: 100%; }
.hidden { display: none !important; }
.relative { position: relative; }
