/* extra.css — styles for auth, board picker, team, guest banner, brief panel.
   Reuses the design tokens defined in styles.css. */

/* ---------- Auth / login ---------- */
body.auth-body {
  display: flex; align-items: center; justify-content: center;
  min-height: 100vh; padding: 40px;
}
.auth-wrap {
  width: 100%; max-width: 420px; padding: 30px 30px 34px;
  border-radius: var(--r-xl);
  background: rgba(26, 30, 28, 0.30);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-lg);
}
.auth-title { font-size: 22px; font-weight: 800; margin: 0 0 8px; }
.auth-note { color: var(--text-muted); font-size: 13px; line-height: 1.6; margin: 0 0 18px; }
.auth-error { background: rgba(229,72,77,0.12); border: 1px solid rgba(229,72,77,0.4); color: #ff9a9d; padding: 9px 12px; border-radius: var(--r-sm); margin-bottom: 14px; font-size: 13px; }
.auth-form { display: flex; flex-direction: column; gap: 13px; }
.auth-form label { margin: 0; }
.auth-guest { display: inline-block; margin-top: 18px; color: var(--accent); text-decoration: none; font-weight: 600; font-size: 13px; }
.auth-guest:hover { text-decoration: underline; }

/* ---------- Board picker ---------- */
.picker { padding: 26px 22px 44px; max-width: 1200px; margin: 0 auto; flex: 1; overflow-y: auto; }
.picker-head { margin-bottom: 24px; }
.picker-head h1 { font-family: var(--font-display); font-size: var(--fs-3xl); margin: 0 0 4px; font-weight: 700; }
.muted { color: var(--text-muted); font-size: var(--fs-sm); }

/* Featured project panel */
/* ====================== PROJECT CARDS GRID ====================== */
.pj-head {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  margin-bottom: 20px; flex-wrap: wrap;
}
.pj-head h1 { font-family: var(--font-display); font-size: var(--fs-2xl); font-weight: 800; margin: 0; }
.pj-head h2 { font-family: var(--font-display); font-size: var(--fs-lg); font-weight: 700; margin: 0; display: flex; align-items: center; gap: 8px; }
.pj-head h2 .ic { width: 20px; height: 20px; color: var(--accent); }
.pj-head .muted { color: var(--text-muted); font-size: var(--fs-sm); margin: 2px 0 0; }

/* Page container — clean transparent, no blur */
.pj-page {
  padding: 20px 32px 48px;
  flex: 1; overflow-y: auto;
  background: rgba(26, 30, 28, 0.15);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow);
  position: relative;
}

/* Responsive grid — adapts to content */
.pj-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
}

/* ---- Card ---- clean transparent */
.pj-card {
  position: relative; display: flex; flex-direction: column; gap: 0;
  background: rgba(26, 30, 28, 0.20);
  border: 1px solid rgba(255,255,255,0.08); border-radius: var(--r-xl);
  padding: 0; text-decoration: none; color: var(--text);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: border-color 180ms ease, transform 160ms ease, box-shadow 200ms ease, opacity 160ms ease;
}
.pj-card:hover {
  border-color: var(--accent); transform: translateY(-3px);
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,0.08), 0 0 20px var(--accent-glow);
}
.pj-card.is-pinned {
  border-color: var(--accent);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,0.06), 0 0 24px var(--accent-glow);
}

/* Drag states */
.pj-card.is-dragging {
  opacity: 0.35; transform: scale(0.97); border-style: dashed;
}
.pj-card.is-drag-over {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--accent-soft), var(--shadow-lg), 0 0 32px var(--accent-glow);
  transform: scale(1.02);
}

/* Drag handle */
.pj-drag-handle {
  position: absolute; top: 6px; right: 6px; z-index: 5;
  width: 24px; height: 24px; display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-sm); color: var(--text-dim); cursor: grab;
  opacity: 0; transition: opacity 160ms ease, background 140ms ease;
}
.pj-card:hover .pj-drag-handle { opacity: 1; }
.pj-drag-handle:hover { background: var(--accent-soft); color: var(--accent); cursor: grab; }
.pj-drag-handle:active { cursor: grabbing; }

/* Left accent strip */
.pj-card-strip {
  position: absolute; inset-inline-start: 0; top: 0; bottom: 0; width: 4px;
  border-radius: var(--r-xl) 0 0 var(--r-xl);
}

/* Card top: icon + actions */
.pj-card-top {
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: 14px 14px 0 14px;
}
.pj-card-icon {
  width: 36px; height: 36px; border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-soft); color: var(--accent); flex-shrink: 0;
}
.pj-card-icon img { width: 22px; height: 22px; object-fit: contain; border-radius: 3px; }
.pj-card-icon .ic { width: 18px; height: 18px; }

/* Action buttons — clean transparent */
.pj-card-actions {
  display: flex; gap: 4px; opacity: 0;
  transition: opacity 160ms ease;
}
.pj-card:hover .pj-card-actions { opacity: 1; }
.pj-card.is-pinned .pj-card-actions { opacity: 1; }
.pj-act-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 28px; border-radius: var(--r-sm);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  color: var(--text-muted); font-size: 14px; line-height: 1;
  cursor: pointer; transition: all 140ms ease;
}
.pj-act-btn:hover {
  background: var(--accent-soft); color: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
}
.pj-act-btn:active { transform: scale(0.92); }
.pj-act-btn.is-starred { color: var(--accent2); text-shadow: 0 0 6px var(--accent2); }
.pj-act-btn.is-starred:hover { background: rgba(245,166,35,0.15); box-shadow: 0 0 8px rgba(245,166,35,0.3); }

/* Card body */
.pj-card-body {
  padding: 10px 14px 6px; flex: 1;
}
.pj-card-name {
  font-family: var(--font-display); font-size: var(--fs-md); font-weight: 700;
  margin: 0 0 4px; line-height: 1.3;
}
.pj-card-desc {
  color: var(--text-muted); font-size: var(--fs-xs); margin: 0;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  line-height: 1.5;
}
.pj-card-tag {
  display: inline-block; margin-top: 6px;
  font-family: var(--font-mono); font-size: 10px; font-weight: 500;
  color: var(--accent2); background: var(--accent2-soft);
  padding: 2px 8px; border-radius: var(--r-sm); letter-spacing: 0.3px;
}

/* Stats row */
.pj-card-stats {
  display: flex; flex-wrap: wrap; gap: 6px 14px;
  padding: 8px 14px 0; font-size: var(--fs-xs); color: var(--text-muted);
}
.pj-stat b { color: var(--text); font-family: var(--font-mono); font-weight: 600; }

/* Progress bar */
.pj-card-progress {
  height: 3px; margin: 10px 14px 0;
  background: var(--bg-3); border-radius: 2px; overflow: hidden;
}
.pj-progress-bar {
  height: 100%; border-radius: 2px;
  transition: width 400ms ease;
}

/* Add card — transparent */
.pj-card-add {
  align-items: center; justify-content: center;
  border: 1.5px dashed rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  box-shadow: none; min-height: 160px;
}
.pj-card-add .pj-card-icon { background: transparent; color: var(--text-muted); width: 44px; height: 44px; }
.pj-card-add .pj-card-icon .ic { width: 22px; height: 22px; }
.pj-card-add .pj-card-name { color: var(--text-muted); font-size: var(--fs-sm); margin: 8px 0 0; }
.pj-card-add:hover { border-color: var(--accent); color: var(--accent); }
.pj-card-add:hover .pj-card-icon { color: var(--accent); }

/* ---- Project hero (index.php) — clean transparent ---- */
.proj-hero {
  position: relative; margin-bottom: 20px;
  background: rgba(26, 30, 28, 0.18);
  border: 1px solid rgba(255,255,255,0.08); border-radius: var(--r-xl);
  padding: 16px 20px 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.proj-hero::before {
  content: ""; position: absolute; inset-inline-start: 0; top: 0; bottom: 0; width: 4px;
  background: linear-gradient(180deg, var(--accent), color-mix(in srgb, var(--accent) 40%, #fff));
}
.proj-hero::after {
  content: ""; position: absolute; top: -60px; inset-inline-end: -50px;
  width: 180px; height: 180px; border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 15%, transparent), transparent 70%);
  pointer-events: none;
}

/* Hero inner — horizontal row: logo | info | stats */
.proj-hero-inner {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 14px;
}

/* Hero logo — compact */
.proj-hero-icon {
  width: 44px; height: 44px; border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-soft); color: var(--accent);
  flex-shrink: 0; overflow: hidden;
  border: 1.5px solid color-mix(in srgb, var(--accent) 25%, transparent);
}
.proj-hero-icon img {
  width: 28px; height: 28px; object-fit: contain; border-radius: 3px;
}
.proj-hero-icon .ic { width: 22px; height: 22px; }

/* Hero info */
.proj-hero-info {
  flex: 1; min-width: 120px;
}
.proj-hero-info h1 {
  font-family: var(--font-display); font-size: var(--fs-lg); font-weight: 800;
  margin: 0; letter-spacing: -0.02em; line-height: 1.2;
}
.proj-hero-info > p {
  color: var(--text-muted); font-size: var(--fs-xs); margin: 2px 0 0; line-height: 1.3;
}

/* Hero stats — clean transparent pills */
.proj-hero-stats {
  display: flex; gap: 6px; flex-shrink: 0;
}
.proj-stat {
  display: flex; flex-direction: column; align-items: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-sm);
  padding: 4px 12px; min-width: 56px;
}
.proj-stat-n {
  font-family: var(--font-mono); font-size: var(--fs-sm); font-weight: 700; color: var(--accent);
  line-height: 1.2;
}
.proj-stat-l {
  font-size: 9px; color: var(--text-muted); text-transform: uppercase;
  letter-spacing: 0.4px; line-height: 1.2;
}

/* Hero progress bar — full width below */
.proj-hero-bar {
  position: relative; z-index: 1;
  width: 100%; height: 3px; margin-top: 12px;
  background: var(--bg-3); border-radius: 2px; overflow: hidden;
}
.proj-hero-fill {
  height: 100%; border-radius: 2px; transition: width 400ms ease;
}

/* Hero responsive */
@media (max-width: 600px) {
  .proj-hero { padding: 12px 14px 10px; }
  .proj-hero-inner { gap: 10px; flex-wrap: wrap; }
  .proj-hero-icon { width: 36px; height: 36px; }
  .proj-hero-icon img { width: 22px; height: 22px; }
  .proj-hero-icon .ic { width: 18px; height: 18px; }
  .proj-hero-info h1 { font-size: var(--fs-base); }
  .proj-hero-stats { width: 100%; justify-content: flex-start; }
  .proj-stat { padding: 3px 10px; min-width: 48px; }
  .proj-stat-n { font-size: var(--fs-xs); }
  .proj-stat-l { font-size: 8px; }
}

/* ---- Legacy board-tile fallback — transparent ---- */
.board-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 18px; }
.board-tile {
  position: relative; display: flex; flex-direction: column; gap: 10px;
  background: rgba(26, 30, 28, 0.20);
  border: 1px solid rgba(255,255,255,0.08); border-radius: var(--r-xl);
  padding: 18px 18px 16px; text-decoration: none; color: var(--text);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 200ms ease;
}
.board-tile:hover {
  border-color: var(--accent); transform: translateY(-3px);
  box-shadow: var(--shadow-lg), 0 0 20px var(--accent-glow);
}
.tile-icon {
  width: 42px; height: 42px; border-radius: var(--r-md); display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent-soft); color: var(--accent);
}
.tile-icon .ic { width: 22px; height: 22px; }
.tile-name { font-family: var(--font-display); font-size: var(--fs-md); font-weight: 700; }
.tile-strip { position: absolute; inset-inline-start: 0; top: 0; bottom: 0; width: 4px; background: var(--accent); border-radius: 0 var(--r-sm) var(--r-sm) 0; }
.tile-counts { display: flex; flex-wrap: wrap; gap: 6px 12px; font-size: var(--fs-xs); color: var(--text-muted); }
.tile-counts .tc b { color: var(--text); font-family: var(--font-mono); }
.tile-add { align-items: center; justify-content: center; border: 1.5px dashed var(--border-strong); color: var(--text-muted); }
.tile-add:hover { color: var(--accent); border-color: var(--accent); }

/* ---------- Team ---------- */
.team-page { padding: 26px 22px 44px; max-width: 1200px; margin: 0 auto; flex: 1; overflow-y: auto; }
.team-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; gap: 16px; flex-wrap: wrap; }
.team-head h1 { font-family: var(--font-display); font-size: 24px; margin: 0; font-weight: 700; }
.team-table-wrap {
  width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch;
  border: 1px solid rgba(255,255,255,0.08); border-radius: var(--r-lg);
  background: rgba(26, 30, 28, 0.20);
  box-shadow: var(--shadow-soft);
}
.team-table { width: 100%; border-collapse: collapse; min-width: 600px; }
.team-table th, .team-table td { text-align: start; padding: 12px 14px; font-size: 13px; border-bottom: 1px solid var(--border); white-space: nowrap; }
.team-table th { color: var(--text-muted); text-transform: uppercase; font-size: 11px; letter-spacing: 0.5px; position: sticky; top: 0; background: var(--surface-flat); }
.team-table tr:last-child td { border-bottom: none; }
.tag-flag { font-size: 10px; color: var(--p1); border: 1px solid var(--p1); border-radius: var(--r-sm); padding: 1px 7px; margin-inline-start: 6px; }
.ok-dot { color: var(--accent); font-weight: 700; }
.bad-dot { color: var(--p0); font-weight: 700; }
.danger-btn { color: var(--p0); border-color: rgba(229,72,77,0.4); }
#pwReveal {
  margin-top: 22px;
  background: rgba(26, 30, 28, 0.20);
  border: 1px solid rgba(255,255,255,0.08); border-radius: var(--r-lg);
  padding: 18px;
  box-shadow: var(--shadow-soft);
}
#pwReveal h3 { margin: 0 0 8px; }
.pw-box { font-family: var(--font-mono); font-size: 18px; color: var(--accent); background: var(--glass-soft); border: 1px dashed var(--accent); border-radius: var(--r-md); padding: 12px 14px; margin: 10px 0 16px; word-break: break-all; }

/* ---------- Guest banner ---------- */
.guest-banner {
  position: sticky; top: 0; z-index: 80; display: flex; align-items: center; gap: 10px;
  padding: 10px 22px;
  background: rgba(37, 99, 235, 0.35);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: #fff; font-size: 12.5px; font-weight: 600;
  box-shadow: var(--shadow-soft);
}
.guest-banner.warn { background: var(--p0); }
.guest-banner .gb-icon { display: inline-flex; }
.guest-banner #gbText { flex: 1; }
.guest-banner .gb-link { color: #fff; text-decoration: underline; font-weight: 700; white-space: nowrap; }

/* ---------- Brief pill (in filterbar btn-row) ---------- */
.brief-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg, var(--accent-deep) 0%, color-mix(in srgb, var(--accent) 70%, #fff) 100%);
  color: #fff; border: 1px solid transparent;
  padding: 6px 16px; border-radius: 999px; font-size: 12px; font-weight: 700;
  cursor: pointer; white-space: nowrap;
  box-shadow: 0 2px 10px var(--accent-glow), 0 0 20px rgba(37,99,235,0.15);
  transition: all 180ms ease;
}
.brief-pill .ic { width: 14px; height: 14px; }
.brief-pill:hover {
  background: linear-gradient(135deg, var(--accent) 0%, color-mix(in srgb, var(--accent-deep) 80%, #fff) 100%);
  box-shadow: 0 4px 20px var(--accent-glow), 0 0 30px rgba(37,99,235,0.25);
  transform: translateY(-1px);
}
.brief-pill:active { transform: translateY(0); box-shadow: 0 1px 6px var(--accent-glow); }

/* Brief modal */
#modalBox:has(.brief-modal) { width: 640px; max-width: 95vw; }
.brief-modal { display: flex; flex-direction: column; max-height: 75vh; }
.brief-modal-head {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 18px 24px 14px; border-bottom: 1px solid var(--border);
}
.brief-modal-head h2 { margin: 0; font-family: var(--font-display); font-size: 18px; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.brief-modal-head h2 .ic { width: 20px; height: 20px; color: var(--accent); }
.brief-modal-actions { display: flex; gap: 6px; align-items: center; }
.brief-modal-actions .ghost { font-size: 12px; padding: 5px 12px; }
.brief-modal-content { padding: 20px 24px; overflow-y: auto; flex: 1; line-height: 1.75; font-size: 14px; color: var(--text); }
.brief-modal-content h1, .brief-modal-content h2, .brief-modal-content h3 { margin-top: 18px; margin-bottom: 8px; }
.brief-modal-content ul, .brief-modal-content ol { padding-left: 22px; margin: 8px 0; }
.brief-modal-content li { margin-bottom: 4px; }
.brief-modal-content table { width: 100%; border-collapse: collapse; margin: 12px 0; font-size: 13px; }
.brief-modal-content th, .brief-modal-content td { padding: 8px 12px; border: 1px solid var(--border); text-align: left; }
.brief-modal-content th { background: var(--surface-flat); font-weight: 600; }
.brief-modal-content td:first-child { font-weight: 600; }
.brief-modal-content blockquote { border-inline-start: 3px solid var(--accent); padding: 8px 16px; margin: 12px 0; background: var(--accent-soft); border-radius: var(--r-md); }
.brief-modal-content code { font-family: var(--font-mono); font-size: 12px; background: var(--surface-flat); padding: 2px 6px; border-radius: var(--r-sm); }
.brief-editor { width: 100%; min-height: 300px; background: var(--surface-flat); color: var(--text); border: 1px solid var(--border); border-radius: var(--r-md); padding: 14px; font-family: var(--font-mono); font-size: 13px; line-height: 1.6; resize: vertical; }
.brief-editor:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); outline: none; }
.brief-edit-actions { display: flex; gap: 8px; margin-top: 12px; }

/* ---------- Today / Ma Journée ---------- */
.today-page { padding: 26px 22px 56px; max-width: 900px; margin: 0 auto; flex: 1; overflow-y: auto; }
.today-head { margin-bottom: 24px; }
.today-head h1 { font-family: var(--font-display); font-size: var(--fs-2xl); margin: 0 0 4px; font-weight: 700; }
.today-loading { color: var(--text-dim); font-size: 14px; padding: 40px 0; text-align: center; }
.today-empty { color: var(--text-dim); font-size: 15px; padding: 60px 20px; text-align: center; background: var(--surface-flat); border: 1px dashed var(--border); border-radius: var(--r-xl); }
.today-section { margin-bottom: 28px; }
.ts-head {
  display: flex; align-items: center; gap: 10px; margin-bottom: 12px;
}
.ts-head h2 { font-size: 17px; font-weight: 800; margin: 0; }
.ts-badge {
  background: var(--accent); color: #fff; border-radius: var(--r-md);
  padding: 2px 10px; font-size: 12px; font-weight: 700; min-width: 24px; text-align: center;
}
.ts-overdue .ts-badge, .ts-badge.ts-overdue { background: var(--p0); }
.ts-today .ts-badge, .ts-badge.ts-today { background: var(--accent); }
.ts-assigned .ts-badge, .ts-badge.ts-assigned { background: var(--accent2); }

.tc-list { display: flex; flex-direction: column; gap: 8px; }

.today-card {
  display: flex; flex-direction: column; gap: 8px;
  background: rgba(26, 30, 28, 0.20);
  border: 1px solid rgba(255,255,255,0.08); border-left: 4px solid var(--p3);
  border-radius: var(--r-lg);
  padding: 14px 16px; text-decoration: none; color: var(--text);
  box-shadow: var(--shadow-soft);
  transition: border-color 160ms ease, transform 120ms ease, box-shadow 160ms ease;
}
.today-card:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.today-card.p0 { border-left-color: var(--p0); }
.today-card.p1 { border-left-color: var(--p1); }
.today-card.p2 { border-left-color: var(--p2); }
.today-card.p3 { border-left-color: var(--p3); }

.tc-title { font-family: var(--font-display); font-weight: 600; font-size: var(--fs-base); line-height: var(--lh-tight); }
.tc-meta { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.tc-board { font-size: var(--fs-xs); color: var(--text-muted); display: flex; align-items: center; gap: 5px; }
.tc-prio { font-size: var(--fs-xs); color: var(--text-dim); font-family: var(--font-mono); }
.tc-due { font-size: var(--fs-xs); font-family: var(--font-mono); color: var(--text-dim); font-weight: 500; }
.tc-due.overdue { color: var(--p0); font-weight: 600; }

/* Scrollbar — thin styled for all scrollable page mains */
.today-page,
.team-page,
.picker,
.pj-page,
.cal-page {
  scrollbar-width: thin;
  scrollbar-color: var(--border-strong) transparent;
}
.today-page::-webkit-scrollbar,
.team-page::-webkit-scrollbar,
.picker::-webkit-scrollbar,
.pj-page::-webkit-scrollbar,
.cal-page::-webkit-scrollbar { width: 5px; }
.today-page::-webkit-scrollbar-track,
.team-page::-webkit-scrollbar-track,
.picker::-webkit-scrollbar-track,
.pj-page::-webkit-scrollbar-track,
.cal-page::-webkit-scrollbar-track { background: transparent; }
.today-page::-webkit-scrollbar-thumb,
.team-page::-webkit-scrollbar-thumb,
.picker::-webkit-scrollbar-thumb,
.pj-page::-webkit-scrollbar-thumb,
.cal-page::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 3px; }
.today-page::-webkit-scrollbar-thumb:hover,
.team-page::-webkit-scrollbar-thumb:hover,
.picker::-webkit-scrollbar-thumb:hover,
.pj-page::-webkit-scrollbar-thumb:hover,
.cal-page::-webkit-scrollbar-thumb:hover { background: var(--accent); }

@media (max-width: 600px) {
  .today-page { padding: 16px 10px 36px; }
  .today-head h1 { font-size: var(--fs-xl); }
}

/* ---------- Logout link in topbar ---------- */
.btn-ghost-logout { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; color: var(--text-muted); text-decoration: none; background: var(--glass-soft); border: 1px solid var(--border); border-radius: var(--r-md); padding: 8px 14px; }
.btn-ghost-logout:hover { color: var(--text); border-color: var(--accent); }
