/* ============================================================================
   Real Estate on Purpose — App Chrome
   Sidebar, topbar, page headers, shared components.
   Link AFTER colors_and_type.css.
   ============================================================================ */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { background: var(--background); color: var(--reop-dark-blue); }

/* ── CSS VARS: SIDEBAR ──────────────────────────────────────────────────── */
:root {
  --sidebar-w:          240px;
  --sidebar-w-collapsed: 60px;
  --topbar-h:           52px;
  --sidebar-bg:         #0e1f2b;        /* deep navy — premium, calm */
  --sidebar-border:     rgba(255,255,255,0.07);
  --sidebar-item-hover: rgba(255,255,255,0.06);
  --sidebar-item-active-bg: rgba(0,162,173,0.14);
  --sidebar-item-active-border: #00a2ad;
  --sidebar-group-label: rgba(255,255,255,0.35);
  --sidebar-text:       rgba(255,255,255,0.75);
  --sidebar-text-active: #ffffff;
  --topbar-bg:          #ffffff;
  --topbar-border:      hsl(220 13% 91%);
}

/* ── APP LAYOUT ─────────────────────────────────────────────────────────── */
.app {
  display: grid;
  grid-template-columns: var(--sidebar-w) 1fr;
  grid-template-rows: var(--topbar-h) 1fr;
  grid-template-areas:
    "topbar  topbar"
    "sidebar main";
  min-height: 100vh;
  transition: grid-template-columns 240ms cubic-bezier(0.4,0,0.2,1);
}

/* Collapsed state — driven by body class */
body.sidebar-collapsed .app {
  grid-template-columns: var(--sidebar-w-collapsed) 1fr;
}
body.sidebar-collapsed .nav-label,
body.sidebar-collapsed .nav-group-label,
body.sidebar-collapsed .sidebar-footer .nav-label {
  opacity: 0;
  width: 0;
  overflow: hidden;
  pointer-events: none;
}
body.sidebar-collapsed .sidebar-nav {
  align-items: center;
}
body.sidebar-collapsed .nav-item {
  justify-content: center;
  padding: 9px 0;
  width: calc(var(--sidebar-w-collapsed) - 16px);
}
body.sidebar-collapsed .nav-group {
  align-items: center;
}
body.sidebar-collapsed .nav-group-label {
  width: 24px;
  height: 1px;
  background: var(--sidebar-border);
  padding: 0;
  margin: 8px 0 6px;
  letter-spacing: 0;
  font-size: 0;
}
body.sidebar-collapsed .sidebar-footer {
  justify-content: center;
  padding: 12px 0;
}
body.sidebar-collapsed .sidebar-streak {
  justify-content: center;
  padding: 8px 0;
  width: 36px;
}
body.sidebar-collapsed .topbar-username,
body.sidebar-collapsed .topbar-logo img {
  display: none;
}

/* ── TOP BAR ────────────────────────────────────────────────────────────── */
.topbar {
  grid-area: topbar;
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--topbar-h);
  background: var(--topbar-bg);
  border-bottom: 1px solid var(--topbar-border);
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 20px 0 0;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 0;
  width: var(--sidebar-w);
  padding: 0 12px 0 14px;
  flex-shrink: 0;
  transition: width 240ms cubic-bezier(0.4,0,0.2,1);
  border-right: 1px solid var(--topbar-border);
  height: 100%;
}
body.sidebar-collapsed .topbar-left {
  width: var(--sidebar-w-collapsed);
}

.topbar-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-left: 8px;
  overflow: hidden;
  flex: 1;
}
.topbar-logo img {
  height: 26px;
  width: auto;
  flex-shrink: 0;
  transition: opacity 200ms;
}

.sidebar-toggle {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid var(--topbar-border);
  background: transparent;
  color: var(--reop-dark-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 150ms, color 150ms;
}
.sidebar-toggle:hover {
  background: var(--reop-teal-soft);
  color: var(--primary);
  border-color: var(--primary);
}
.sidebar-toggle .lucide { width: 16px; height: 16px; }

.topbar-center {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0 20px;
  max-width: 560px;
}

.topbar-search {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}
.topbar-search input {
  width: 100%;
  height: 34px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0 36px 0 34px;
  font-family: inherit;
  font-size: 13px;
  color: var(--reop-dark-blue);
  background: hsl(210 20% 98%);
  transition: border-color 150ms, box-shadow 150ms;
}
.topbar-search input::placeholder { color: var(--muted-foreground); }
.topbar-search input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px hsl(184 100% 34% / 0.1);
  background: white;
}
.topbar-search > .lucide {
  position: absolute;
  left: 10px;
  width: 14px;
  height: 14px;
  color: var(--muted-foreground);
  pointer-events: none;
}
.topbar-search kbd {
  position: absolute;
  right: 9px;
  font-family: inherit;
  font-size: 11px;
  color: var(--muted-foreground);
  background: hsl(210 20% 94%);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1px 5px;
  line-height: 1.4;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.topbar-icon-btn {
  position: relative;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--reop-dark-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 150ms;
}
.topbar-icon-btn:hover {
  background: hsl(210 20% 96%);
  border-color: var(--border);
}
.topbar-icon-btn .lucide { width: 17px; height: 17px; }
.notif-dot {
  position: absolute;
  top: 7px;
  right: 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: hsl(0 84% 55%);
  border: 1.5px solid white;
}

.topbar-user {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 34px;
  padding: 0 8px 0 4px;
  border-radius: 8px;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  color: var(--reop-dark-blue);
  margin-left: 4px;
  transition: background 150ms;
}
.topbar-user:hover {
  background: hsl(210 20% 96%);
  border-color: var(--border);
}

.topbar-av {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--reop-dark-blue);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}
.topbar-username {
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

/* ── USER DROPDOWN ──────────────────────────────────────────────────────── */
.user-dropdown {
  position: fixed;
  z-index: 200;
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  width: 240px;
  overflow: hidden;
  animation: fadeSlideDown 140ms ease-out;
}
@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.user-dropdown-head {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 14px 16px;
  background: hsl(210 20% 98%);
}
.user-dropdown-sep {
  height: 1px;
  background: var(--border);
  margin: 4px 0;
}
.user-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  font-size: 13px;
  color: var(--reop-dark-blue);
  text-decoration: none;
  cursor: pointer;
  transition: background 120ms;
}
.user-dropdown-item:hover { background: hsl(210 20% 97%); }
.user-dropdown-item .lucide { width: 14px; height: 14px; color: var(--muted-foreground); }

/* ── NOTIFICATIONS PANEL ────────────────────────────────────────────────── */
.notif-panel {
  position: fixed;
  z-index: 200;
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  width: 360px;
  max-width: calc(100vw - 24px);
  overflow: hidden;
  animation: fadeSlideDown 140ms ease-out;
}
.notif-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 700;
  border-bottom: 1px solid var(--border);
  background: hsl(210 20% 98%);
}
.notif-item {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
  font-size: 13px;
  line-height: 1.5;
  transition: background 120ms;
}
.notif-item:last-of-type { border-bottom: none; }
.notif-item:hover { background: hsl(210 20% 98.5%); }
.notif-unread { background: hsl(184 100% 98.5%); }
.notif-unread:hover { background: hsl(184 100% 97%); }
.notif-ico {
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.notif-ico .lucide { width: 14px; height: 14px; }
.notif-body { color: var(--reop-dark-blue); }
.notif-body b { font-weight: 600; }
.notif-ts { font-size: 11px; color: var(--muted-foreground); white-space: nowrap; padding-top: 2px; }
.notif-footer {
  padding: 12px 16px;
  text-align: center;
  font-size: 12.5px;
  border-top: 1px solid var(--border);
  background: hsl(210 20% 98%);
}
.notif-footer a { color: var(--primary); font-weight: 600; text-decoration: none; }
.notif-footer a:hover { text-decoration: underline; }

/* ── SIDEBAR ────────────────────────────────────────────────────────────── */
.sidebar {
  grid-area: sidebar;
  background: var(--sidebar-bg);
  display: flex;
  flex-direction: column;
  position: sticky;
  top: var(--topbar-h);
  height: calc(100vh - var(--topbar-h));
  overflow: hidden;
  transition: width 240ms cubic-bezier(0.4,0,0.2,1);
  border-right: 1px solid var(--sidebar-border);
}
.sidebar:hover { overflow-y: auto; }

.sidebar-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 12px 8px 8px;
  overflow-x: hidden;
}

/* Groups */
.nav-group {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin-bottom: 4px;
}
.nav-group-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 700;
  color: var(--sidebar-group-label);
  padding: 10px 10px 4px;
  white-space: nowrap;
  overflow: hidden;
  transition: opacity 200ms, width 200ms;
}

/* Nav items */
.nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--sidebar-text);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  position: relative;
  transition: background 130ms, color 130ms;
  white-space: nowrap;
  overflow: hidden;
}
.nav-item:hover {
  background: var(--sidebar-item-hover);
  color: var(--sidebar-text-active);
}
.nav-item.active {
  background: var(--sidebar-item-active-bg);
  color: var(--sidebar-text-active);
  font-weight: 600;
}
.nav-item.active .nav-pip {
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 3px;
  background: var(--sidebar-item-active-border);
  border-radius: 0 3px 3px 0;
}

.nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.nav-icon .lucide { width: 16px; height: 16px; stroke-width: 1.75; }

.nav-label {
  transition: opacity 200ms;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Sidebar footer */
.sidebar-footer {
  padding: 10px 10px 14px;
  border-top: 1px solid var(--sidebar-border);
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.sidebar-streak {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 8px;
  border-radius: 8px;
  color: var(--reop-green);
  font-size: 12.5px;
  font-weight: 600;
  cursor: default;
  transition: background 130ms;
  overflow: hidden;
  white-space: nowrap;
}
.sidebar-streak:hover { background: rgba(153,202,60,0.1); }
.sidebar-streak .lucide { width: 15px; height: 15px; flex-shrink: 0; }

/* ── SIDEBAR OVERLAY (mobile) ───────────────────────────────────────────── */
.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 40;
}

/* ── RESPONSIVE ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .app {
    grid-template-columns: 0 1fr;
    grid-template-areas:
      "topbar topbar"
      "sidebar main";
  }
  .sidebar {
    position: fixed;
    left: 0;
    top: var(--topbar-h);
    bottom: 0;
    width: var(--sidebar-w);
    transform: translateX(-100%);
    transition: transform 240ms cubic-bezier(0.4,0,0.2,1);
    z-index: 45;
    height: calc(100vh - var(--topbar-h));
  }
  body.sidebar-open .sidebar { transform: translateX(0); }
  body.sidebar-open .sidebar-overlay { display: block; }
  body.sidebar-collapsed .app { grid-template-columns: 0 1fr; }
  .topbar-center { padding: 0 12px; }
  .topbar-left { border-right: none; }
}

@media (max-width: 640px) {
  .topbar-center { display: none; }
  .topbar { padding: 0 12px; }
}

/* ── MAIN CONTENT ───────────────────────────────────────────────────────── */
.main {
  grid-area: main;
  padding: 28px 36px 80px;
  max-width: 1440px;
  min-width: 0;
}
@media (max-width: 768px) { .main { padding: 20px 16px 64px; } }

/* ── PAGE HEADER ────────────────────────────────────────────────────────── */
.page-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.page-head-left { display: flex; flex-direction: column; gap: 3px; }
.page-head .eye {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--primary);
  display: block;
}
.page-head h1 {
  font-size: clamp(1.35rem, 1.8vw + 0.5rem, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin: 0;
  line-height: 1.15;
  color: var(--reop-dark-blue-2);
}
.page-head .sub {
  color: var(--muted-foreground);
  font-size: 13px;
  margin: 0;
  max-width: 560px;
  line-height: 1.5;
}
.page-head .actions { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }

/* ── BUTTON SYSTEM ──────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  height: 36px; padding: 0 14px;
  font-size: 13px; font-weight: 600; border-radius: 8px;
  border: 1px solid transparent;
  transition: all 150ms ease-out; cursor: pointer;
  background: transparent; color: var(--reop-dark-blue);
  text-decoration: none; font-family: inherit;
  white-space: nowrap;
}
.btn-primary { background: var(--primary); color: white; border-color: var(--primary); }
.btn-primary:hover { background: var(--reop-teal-hover); border-color: var(--reop-teal-hover); }
.btn-outline { border-color: var(--border); background: var(--card); }
.btn-outline:hover { background: var(--reop-teal-soft); border-color: var(--primary); color: var(--primary); }
.btn-ghost:hover { background: hsl(210 20% 96%); }
.btn-sm { height: 30px; padding: 0 10px; font-size: 12px; border-radius: 6px; }
.btn-lg { height: 42px; padding: 0 18px; font-size: 14px; }
.btn .lucide { width: 14px; height: 14px; stroke-width: 2; flex-shrink: 0; }

/* ── PANEL / CARD ───────────────────────────────────────────────────────── */
.panel { background: var(--card); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.panel-head {
  padding: 14px 18px;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  border-bottom: 1px solid var(--border);
  background: hsl(210 20% 98.5%);
}
.panel-head h3 {
  margin: 0; font-size: 13px; font-weight: 700;
  display: flex; gap: 7px; align-items: center;
  text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--reop-dark-blue);
}
.panel-head h3 .lucide { width: 14px; height: 14px; color: var(--primary); }
.panel-head .sub { margin: 2px 0 0; font-size: 12px; color: var(--muted-foreground); }
.panel-body { padding: 18px; }
.panel-body--flush { padding: 0; }

/* ── COACH PANEL ────────────────────────────────────────────────────────── */
.coach-panel {
  position: relative;
  background: linear-gradient(135deg, hsl(184 100% 97%), hsl(210 20% 99%));
  border: 1px solid hsl(184 50% 85%);
  border-radius: 12px;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.coach-panel::before {
  content:""; position: absolute; inset: 0; border-radius: 12px;
  background: radial-gradient(ellipse 400px 120px at 20% 0%, hsl(184 100% 34% / 0.07), transparent);
  pointer-events: none;
}
.coach-panel .ico { width: 38px; height: 38px; border-radius: 9px; background: white; border: 1px solid hsl(184 50% 85%); display:flex; align-items:center; justify-content:center; color: var(--primary); }
.coach-panel .ico .lucide { width: 18px; height: 18px; }
.coach-panel .eye { font-size: 10px; text-transform: uppercase; letter-spacing: 0.09em; color: var(--primary); font-weight: 700; margin: 0 0 3px; }
.coach-panel h4 { margin: 0 0 5px; font-size: 14px; font-weight: 600; line-height: 1.35; }
.coach-panel p { margin: 0; font-size: 13px; line-height: 1.55; color: var(--reop-dark-blue); opacity: 0.88; }
.coach-panel .cta { flex-shrink: 0; }
@media (max-width: 640px) { .coach-panel { grid-template-columns: 38px 1fr; } .coach-panel .cta { grid-column: 1/-1; } }

/* ── KPI STRIP ──────────────────────────────────────────────────────────── */
.kpi-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 12px; margin-bottom: 20px; }
.kpi { background: var(--card); border: 1px solid var(--border); border-radius: 10px; padding: 14px 16px; }
.kpi .lab { font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted-foreground); font-weight: 700; display:flex; justify-content: space-between; align-items:center; margin-bottom: 8px; }
.kpi .lab .lucide { width: 13px; height: 13px; }
.kpi .num { font-size: 24px; font-weight: 600; line-height: 1; color: var(--reop-dark-blue); }
.kpi .delta { font-size: 11px; margin-top: 5px; display:flex; gap: 3px; align-items: center; }
.kpi .delta.up { color: hsl(142 71% 35%); }
.kpi .delta.down { color: hsl(0 84% 45%); }
.kpi .delta.neutral { color: var(--muted-foreground); }
.kpi .delta .lucide { width: 11px; height: 11px; }

/* ── PILLS / BADGES ─────────────────────────────────────────────────────── */
.pill { display:inline-flex; align-items:center; gap: 4px; padding: 2px 8px; border-radius: 9999px; font-size: 11px; font-weight: 600; line-height: 1.4; }
.pill .lucide { width: 10px; height: 10px; }
.pill-primary { background: var(--reop-teal-soft); color: var(--primary); }
.pill-ok { background: hsl(142 71% 94%); color: hsl(142 71% 28%); }
.pill-warn { background: hsl(45 93% 93%); color: hsl(35 80% 32%); }
.pill-due { background: hsl(0 84% 95%); color: hsl(0 84% 40%); }
.pill-muted { background: hsl(210 20% 94%); color: hsl(220 9% 40%); }
.pill-accent { background: hsl(74 61% 90%); color: hsl(74 61% 28%); }

/* ── TABS (segmented) ───────────────────────────────────────────────────── */
.seg { display: inline-flex; padding: 3px; background: hsl(210 20% 94%); border-radius: 9px; gap: 2px; }
.seg button { background: transparent; border: none; padding: 6px 12px; border-radius: 7px; font-size: 13px; font-weight: 500; color: var(--muted-foreground); cursor: pointer; display:inline-flex; align-items:center; gap: 5px; font-family: inherit; transition: all 130ms; }
.seg button:hover { color: var(--reop-dark-blue); }
.seg button.active { background: var(--card); color: var(--reop-dark-blue); font-weight: 600; box-shadow: 0 1px 3px rgba(0,0,0,0.07); }
.seg button .lucide { width: 12px; height: 12px; }

/* ── AVATAR ─────────────────────────────────────────────────────────────── */
.av { width: 34px; height: 34px; border-radius: 50%; background: var(--reop-teal-soft); color: var(--primary); display:flex; align-items:center; justify-content:center; font-size: 11px; font-weight: 700; flex-shrink: 0; }
.av-sm { width: 24px; height: 24px; font-size: 10px; }
.av-lg { width: 44px; height: 44px; font-size: 13px; }

/* ── SEARCH INPUT ───────────────────────────────────────────────────────── */
.search { position: relative; flex: 1; max-width: 360px; }
.search input { width: 100%; height: 36px; border: 1px solid var(--border); border-radius: 8px; padding: 0 12px 0 32px; font-size: 13px; background: var(--card); font-family: inherit; color: var(--reop-dark-blue); }
.search input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px hsl(184 100% 34% / 0.1); }
.search .lucide { position: absolute; left: 10px; top: 50%; transform: translateY(-50%); width: 14px; height: 14px; color: var(--muted-foreground); }

/* ── PROGRESS BAR ───────────────────────────────────────────────────────── */
.bar { height: 5px; background: hsl(210 20% 92%); border-radius: 9999px; overflow: hidden; }
.bar > span { display:block; height: 100%; background: var(--primary); border-radius: 9999px; transition: width 300ms; }
.bar.bar-accent > span { background: var(--reop-green); }

/* ── TABLES ─────────────────────────────────────────────────────────────── */
table.data { width: 100%; border-collapse: collapse; font-size: 13px; }
table.data th { text-align: left; padding: 9px 14px; font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted-foreground); font-weight: 700; background: hsl(210 20% 97.5%); border-bottom: 1px solid var(--border); }
table.data td { padding: 11px 14px; border-bottom: 1px solid var(--border); vertical-align: middle; }
table.data tr:last-child td { border-bottom: none; }
table.data tr:hover { background: hsl(210 20% 98.5%); }

/* ── EMPTY STATES ───────────────────────────────────────────────────────── */
.empty { text-align: center; padding: 52px 20px; color: var(--muted-foreground); }
.empty .ico { width: 52px; height: 52px; border-radius: 14px; background: var(--reop-teal-soft); color: var(--primary); display:inline-flex; align-items:center; justify-content:center; margin-bottom: 14px; }
.empty .ico .lucide { width: 22px; height: 22px; }
.empty h4 { margin: 0 0 5px; font-size: 14px; color: var(--reop-dark-blue); }
.empty p { margin: 0 auto; font-size: 13px; max-width: 340px; }

/* ── UTILITY ────────────────────────────────────────────────────────────── */
.row { display:flex; align-items:center; gap: 12px; }
.col { display:flex; flex-direction: column; gap: 8px; }
.grow { flex: 1; min-width: 0; }
.section { margin-bottom: 28px; }
.eye-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--primary); font-weight: 700; }
.muted { color: var(--muted-foreground); }
.hr { height: 1px; background: var(--border); margin: 20px 0; border: 0; }

/* Link baseline */
.main a { text-decoration: none; }
.main a:hover { text-decoration: none; opacity: 1; }
