/* Diernus Portal — shared styles (sidebar dashboard) */
:root {
  --bone:        #EDEAE3;
  --bone-2:      #E4E0D6;
  --bone-3:      #D8D2C4;
  --graphite:    #23211C;
  --graphite-60: rgba(35,33,28,.6);
  --graphite-35: rgba(35,33,28,.35);
  --graphite-15: rgba(35,33,28,.15);
  --graphite-08: rgba(35,33,28,.08);
  --cobalt:      #2C49C7;
  --cobalt-15:   rgba(44,73,199,.15);
  --cobalt-soft: rgba(44,73,199,.08);
  --stamp:       #B3232E;
  --amber:       #C2873A;
  --display:     "Archivo", system-ui, -apple-system, sans-serif;
  --body:        "Newsreader", Georgia, serif;
  --mono:        "IBM Plex Mono", "Courier New", monospace;
  --sidebar-w:   248px;
  --topbar-h:    56px;
  --pad:         clamp(1.25rem, 4vw, 4rem);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bone);
  color: var(--graphite);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
::selection { background: var(--cobalt); color: var(--bone); }
a { color: var(--cobalt); text-decoration: none; }
a:hover { text-decoration: underline; }
.mono { font-family: var(--mono); }

/* ==========================================================================
   LAYOUT — sidebar + top bar
   ========================================================================== */
.shell {
  display: grid;
  grid-template-columns: var(--sidebar-w) 1fr;
  min-height: 100vh;
}
.sidebar {
  background: var(--graphite);
  color: var(--bone);
  display: flex; flex-direction: column;
  padding: 1.25rem 0;
  position: sticky; top: 0; height: 100vh; overflow-y: auto;
}
.sidebar .brand {
  display: flex; align-items: center; gap: .55rem;
  padding: 0 1.4rem 1.4rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-family: var(--mono);
  font-size: .9rem;
  letter-spacing: .14em;
  color: var(--bone);
}
.sidebar .brand b { color: var(--cobalt); background: var(--bone); padding: 0 .4rem; border-radius: 3px; }

.sidebar nav { padding: 1rem 0; flex: 1; }
.sidebar .nav-group { padding: 0 1rem; margin-bottom: 1.4rem; }
.sidebar .nav-label {
  font-family: var(--mono);
  font-size: .58rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(237,234,227,.4);
  padding: 0 .4rem;
  margin-bottom: .35rem;
}
.sidebar .nav-item {
  display: flex; align-items: center; gap: .65rem;
  padding: .5rem .7rem;
  border-radius: 5px;
  color: var(--bone);
  font-family: var(--body);
  font-size: .95rem;
  text-decoration: none;
  transition: background .15s ease;
  position: relative;
}
.sidebar .nav-item:hover { background: rgba(255,255,255,.06); text-decoration: none; }
.sidebar .nav-item.is-active { background: rgba(44,73,199,.18); color: #fff; }
.sidebar .nav-item.is-active::before {
  content: ''; position: absolute; left: -1rem; top: .25rem; bottom: .25rem;
  width: 2px; background: var(--cobalt); border-radius: 2px;
}
.sidebar .nav-item .badge {
  margin-left: auto; font-family: var(--mono); font-size: .62rem;
  background: rgba(255,255,255,.08); padding: 1px 6px; border-radius: 8px;
  min-width: 18px; text-align: center;
}
.sidebar .nav-item .icon { width: 16px; height: 16px; flex-shrink: 0; opacity: .75; }

.sidebar .user-block {
  padding: 1rem 1.4rem; border-top: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; gap: .7rem;
}
.sidebar .avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--cobalt); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: .8rem; font-weight: 600;
  flex-shrink: 0;
}
.sidebar .user-meta { flex: 1; min-width: 0; }
.sidebar .user-name { font-size: .9rem; color: var(--bone); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sidebar .user-role { font-family: var(--mono); font-size: .58rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(237,234,227,.5); }
.sidebar .logout {
  background: none; border: 1px solid rgba(255,255,255,.1);
  color: rgba(237,234,227,.7); cursor: pointer;
  font-family: var(--mono); font-size: .6rem; letter-spacing: .14em;
  text-transform: uppercase;
  padding: .4rem .55rem; border-radius: 4px;
  display: flex; align-items: center; gap: .35rem;
  flex-shrink: 0;
  transition: background .15s, color .15s, border-color .15s;
}
.sidebar .logout:hover { color: var(--stamp); border-color: var(--stamp); background: rgba(179,35,46,.08); }
.sidebar .logout .icon { width: 13px; height: 13px; }

.main { display: flex; flex-direction: column; min-width: 0; }
.topbar {
  position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; gap: 1rem;
  height: var(--topbar-h);
  padding: 0 1.6rem;
  background: var(--bone);
  border-bottom: 1px solid var(--graphite-15);
}
.topbar .crumbs { display: flex; align-items: center; gap: .4rem; color: var(--graphite-60); font-family: var(--mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }
.topbar .crumbs .sep { opacity: .4; }
.topbar .crumbs .current { color: var(--graphite); }
.topbar .spacer { flex: 1; }
.topbar .env-pill { font-family: var(--mono); font-size: .6rem; padding: 2px 8px; border: 1px solid var(--graphite-15); border-radius: 999px; color: var(--graphite-60); }
.topbar .user-chip { display: flex; align-items: center; gap: .55rem; font-family: var(--mono); font-size: .72rem; color: var(--graphite-60); }

.content {
  padding: 1.6rem 1.6rem 4rem;
  max-width: 100%;
  min-height: calc(100vh - var(--topbar-h));
}

@media (max-width: 860px) {
  .shell { grid-template-columns: 1fr; }
  .sidebar { position: relative; height: auto; }
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
.eyebrow {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--cobalt);
  display: block;
  margin-bottom: .35rem;
}
h1 {
  font-family: var(--display);
  font-variation-settings: "wdth" 70, "wght" 800;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  text-transform: uppercase;
  letter-spacing: -.01em;
  line-height: 1;
  margin: 0 0 .4rem 0;
}
h2 {
  font-family: var(--display);
  font-variation-settings: "wdth" 60, "wght" 700;
  font-size: 1.1rem;
  margin: 0 0 .5rem;
}
.page-head {
  display: flex; align-items: flex-end; gap: 1rem;
  margin-bottom: 1.4rem; flex-wrap: wrap;
}
.page-head > div { flex: 1; min-width: 0; }
.page-head p.lede { color: var(--graphite-60); font-style: italic; font-size: .95rem; max-width: 48em; }
.page-head .actions { display: flex; gap: .55rem; flex-wrap: wrap; }

/* ==========================================================================
   BUTTONS, INPUTS, ETC
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--mono); font-size: .7rem; letter-spacing: .12em;
  text-transform: uppercase; padding: .55rem 1rem;
  border-radius: 6px; border: 1px solid transparent; cursor: pointer;
  text-decoration: none; transition: background .15s, color .15s, border-color .15s;
  white-space: nowrap;
}
.btn.primary { background: var(--cobalt); color: #fff; border-color: var(--cobalt); }
.btn.primary:hover { background: #1F38A6; border-color: #1F38A6; text-decoration: none; }
.btn.ghost { background: transparent; color: var(--graphite); border-color: var(--graphite-35); }
.btn.ghost:hover { border-color: var(--graphite); text-decoration: none; }
.btn.danger { background: transparent; color: var(--stamp); border-color: rgba(179,35,46,.3); }
.btn.danger:hover { background: var(--stamp); color: #fff; text-decoration: none; }
.btn.sm { padding: .35rem .7rem; font-size: .62rem; }
.btn:disabled { opacity: .5; cursor: not-allowed; }

.field { display: block; margin-bottom: 1rem; }
.field label { display: block; font-family: var(--mono); font-size: .65rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: .35rem; color: var(--graphite-60); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--body); font-size: .95rem;
  padding: .55rem .7rem; background: #fff; color: var(--graphite);
  border: 1px solid var(--graphite-35); border-radius: 4px;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--cobalt); }

.error   { background: rgba(179,35,46,.08);  border: 1px solid rgba(179,35,46,.3);  color: var(--stamp); padding: .7rem .9rem; border-radius: 4px; margin-bottom: 1rem; font-size: .9rem; }
.success { background: rgba(44,73,199,.08);  border: 1px solid rgba(44,73,199,.3);  color: var(--cobalt); padding: .7rem .9rem; border-radius: 4px; margin-bottom: 1rem; font-size: .9rem; }
.warn    { background: rgba(194,135,58,.08); border: 1px solid rgba(194,135,58,.3); color: var(--amber); padding: .7rem .9rem; border-radius: 4px; margin-bottom: 1rem; font-size: .9rem; }

/* ==========================================================================
   TABLES (for clients, projects, invites lists)
   ========================================================================== */
.table {
  width: 100%; border-collapse: collapse;
  background: #fff; border: 1px solid var(--graphite-15); border-radius: 6px;
  overflow: hidden;
}
.table th, .table td { padding: .8rem 1rem; text-align: left; vertical-align: middle; border-bottom: 1px solid var(--graphite-08); }
.table th { font-family: var(--mono); font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; color: var(--graphite-60); background: var(--bone-2); font-weight: 500; }
.table tr:last-child td { border-bottom: 0; }
.table tr:hover td { background: var(--bone); }
.table .name { font-weight: 500; }
.table .name small { color: var(--graphite-60); display: block; font-weight: 400; font-size: .8rem; }
.table .actions { text-align: right; white-space: nowrap; }
.table .row-actions { display: inline-flex; gap: .35rem; }

.status-pill {
  display: inline-block; font-family: var(--mono); font-size: .6rem;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 2px 8px; border-radius: 999px;
}
.status-pill.active    { background: rgba(44,73,199,.12);  color: var(--cobalt); }
.status-pill.pending   { background: rgba(194,135,58,.15); color: var(--amber); }
.status-pill.suspended { background: rgba(179,35,46,.12);  color: var(--stamp); }
.status-pill.online    { background: rgba(34,140,76,.15);  color: #1e8e3e; }

.empty { padding: 3rem 1rem; text-align: center; color: var(--graphite-60); font-style: italic; background: var(--bone-2); border: 1px dashed var(--graphite-35); border-radius: 6px; }
.spinner { display: inline-block; width: 14px; height: 14px; border: 2px solid var(--graphite-15); border-top-color: var(--cobalt); border-radius: 50%; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ==========================================================================
   STAT CARDS (for overview page)
   ========================================================================== */
.stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem; margin-bottom: 1.4rem;
}
.stat {
  background: #fff; border: 1px solid var(--graphite-15);
  border-radius: 6px; padding: 1.1rem 1.2rem;
}
.stat .label { font-family: var(--mono); font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; color: var(--graphite-60); }
.stat .value { font-family: var(--display); font-variation-settings: "wdth" 60, "wght" 800; font-size: 2rem; line-height: 1; margin-top: .35rem; }
.stat .delta { font-family: var(--mono); font-size: .7rem; color: var(--graphite-60); margin-top: .35rem; }

/* ==========================================================================
   MODAL
   ========================================================================== */
.modal-back { position: fixed; inset: 0; background: rgba(35,33,28,.55); display: none; align-items: center; justify-content: center; z-index: 50; }
.modal-back.on { display: flex; }
.modal { background: var(--bone); border-radius: 8px; padding: 1.8rem; max-width: 460px; width: calc(100% - 2rem); }
.modal h2 {
  font-family: var(--display); font-variation-settings: "wdth" 60, "wght" 800;
  font-size: 1.2rem; text-transform: uppercase; letter-spacing: .02em;
  margin-bottom: 1rem;
}

/* ==========================================================================
   AUTH (login, aceitar) — full-page
   ========================================================================== */
.auth-shell {
  display: flex; align-items: center; justify-content: center;
  min-height: 100vh; padding: 1.5rem;
  background: var(--bone);
}
.auth-card {
  width: 100%; max-width: 400px;
  background: #fff; border: 1px solid var(--graphite-15);
  border-radius: 8px; padding: 2.2rem 2rem;
}
.auth-card h1 {
  font-family: var(--display); font-variation-settings: "wdth" 70, "wght" 850;
  font-size: 1.6rem; text-transform: uppercase; line-height: 1; margin: .4rem 0 1rem;
}
.auth-card p.lede { color: var(--graphite-60); font-style: italic; font-size: .95rem; margin-bottom: 1.5rem; }

/* ==========================================================================
   KANBAN BOARD
   ========================================================================== */
.board-head {
  display: flex; align-items: flex-end; gap: 1rem;
  margin-bottom: 1.4rem; flex-wrap: wrap;
}
.board-head > div:first-child { flex: 1; min-width: 0; }
.board-head h1 {
  font-family: var(--display); font-variation-settings: "wdth" 70, "wght" 800;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem); text-transform: uppercase;
  line-height: 1; margin: 0 0 .35rem 0;
}
.board-head p.lede { color: var(--graphite-60); font-style: italic; font-size: .9rem; }
.board-meta { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
.meta-pill {
  display: inline-flex; flex-direction: column; align-items: center;
  background: #fff; border: 1px solid var(--graphite-15);
  border-radius: 6px; padding: .35rem .65rem; min-width: 70px;
}
.meta-pill .meta-label { font-family: var(--mono); font-size: .55rem; letter-spacing: .12em; text-transform: uppercase; color: var(--graphite-60); }
.meta-pill .meta-value { font-family: var(--display); font-variation-settings: "wdth" 60, "wght" 700; font-size: 1rem; line-height: 1.1; }

.kanban {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem; align-items: start;
}
.kcol {
  background: var(--bone-2); border: 1px solid var(--graphite-15);
  border-radius: 8px; padding: .8rem .8rem .5rem;
  min-height: 200px;
  display: flex; flex-direction: column; gap: .6rem;
}
.kcol-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 .2rem .5rem;
  border-bottom: 1px solid var(--graphite-15);
}
.kcol-name { font-family: var(--mono); font-size: .65rem; letter-spacing: .14em; text-transform: uppercase; color: var(--graphite-60); }
.kcol-count {
  font-family: var(--mono); font-size: .65rem; color: var(--graphite-60);
  background: rgba(35,33,28,.06); padding: 1px 8px; border-radius: 8px;
}
.kcol-cards { display: flex; flex-direction: column; gap: .55rem; min-height: 40px; }
.kcol-add {
  background: transparent; border: 1px dashed var(--graphite-35);
  color: var(--graphite-60); font-family: var(--mono); font-size: .6rem;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .4rem; border-radius: 5px; cursor: pointer;
  width: 100%;
}
.kcol-add:hover { border-color: var(--cobalt); color: var(--cobalt); }

.kcard {
  background: #fff; border: 1px solid var(--graphite-15);
  border-radius: 6px; padding: .65rem .7rem;
  display: flex; flex-direction: column; gap: .35rem;
  cursor: pointer; transition: border-color .15s, box-shadow .15s;
}
.kcard:hover { border-color: var(--cobalt); box-shadow: 0 2px 8px -3px rgba(44,73,199,.25); }
.kcard-prio {
  display: inline-block; font-family: var(--mono); font-size: .55rem;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 1px 6px; border-radius: 4px; align-self: flex-start;
}
.kcard-title { font-size: .92rem; line-height: 1.3; color: var(--graphite); }
.kcard-meta { display: flex; align-items: center; gap: .5rem; font-family: var(--mono); font-size: .62rem; color: var(--graphite-60); flex-wrap: wrap; }
.kcard-due.overdue { color: var(--stamp); }
.kcard-comments { color: var(--graphite-60); }
.kcard-assignee {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--cobalt); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .55rem; font-weight: 600;
  margin-left: auto;
}
.kcard-ghost { opacity: .4; }
.kcard-chosen { box-shadow: 0 4px 12px rgba(0,0,0,.15); }
.kcard-drag { transform: rotate(2deg); }

/* ==========================================================================
   CARD DETAIL (side panel)
   ========================================================================== */
.card-detail-back {
  position: fixed; inset: 0; background: rgba(35,33,28,.55);
  display: none; align-items: stretch; justify-content: flex-end; z-index: 60;
}
.card-detail-back.on { display: flex; }
.card-detail {
  width: min(540px, 96vw); background: var(--bone);
  display: flex; flex-direction: column;
  box-shadow: -8px 0 24px -10px rgba(0,0,0,.4);
  animation: slidein .25s ease;
}
@keyframes slidein { from { transform: translateX(20px); opacity: 0; } to { transform: none; opacity: 1; } }
.card-detail-head {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.4rem 1.4rem 1rem;
  border-bottom: 1px solid var(--graphite-15);
}
.card-detail-head > div { flex: 1; min-width: 0; }
.card-detail-head h2 {
  font-family: var(--display); font-variation-settings: "wdth" 70, "wght" 800;
  font-size: 1.25rem; text-transform: none; line-height: 1.2;
  margin: .35rem 0 0;
}
.cd-meta { display: flex; gap: .4rem; flex-wrap: wrap; }
.cd-pill {
  display: inline-block; font-family: var(--mono); font-size: .6rem;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 2px 8px; border-radius: 4px;
  background: var(--bone-2); color: var(--graphite-60);
}
.cd-close {
  background: none; border: 0; color: var(--graphite-60);
  font-size: 1.4rem; cursor: pointer; padding: .25rem .5rem;
  border-radius: 4px; line-height: 1;
}
.cd-close:hover { background: var(--graphite-08); color: var(--graphite); }

.cd-body { padding: 1.2rem 1.4rem 1.4rem; overflow-y: auto; flex: 1; }
.cd-section { margin-bottom: 1.4rem; }
.cd-section h3 {
  font-family: var(--mono); font-size: .62rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--graphite-60);
  margin-bottom: .6rem;
}
.cd-desc {
  font-size: .95rem; line-height: 1.55; white-space: pre-wrap;
  color: var(--graphite);
}
.cd-comments { display: flex; flex-direction: column; gap: .85rem; margin-bottom: 1rem; }
.cd-comment {
  background: #fff; border: 1px solid var(--graphite-15);
  border-radius: 6px; padding: .7rem .85rem;
}
.cd-comment-head { display: flex; align-items: center; gap: .5rem; margin-bottom: .35rem; }
.cd-author { font-weight: 500; font-size: .9rem; }
.cd-role {
  font-family: var(--mono); font-size: .55rem; letter-spacing: .12em;
  text-transform: uppercase; padding: 1px 6px; border-radius: 4px;
}
.cd-role-studio { background: var(--cobalt-soft); color: var(--cobalt); }
.cd-role-client { background: rgba(194,135,58,.15); color: var(--amber); }
.cd-time { font-family: var(--mono); font-size: .62rem; color: var(--graphite-60); margin-left: auto; }
.cd-comment-body { font-size: .9rem; line-height: 1.5; }
.cd-cmt-form { display: flex; flex-direction: column; gap: .5rem; }
.cd-cmt-form textarea {
  width: 100%; font-family: var(--body); font-size: .9rem; padding: .55rem .7rem;
  background: #fff; border: 1px solid var(--graphite-35); border-radius: 4px;
}
.cd-cmt-form textarea:focus { outline: none; border-color: var(--cobalt); }
.cd-cmt-form button { align-self: flex-end; }

/* ==========================================================================
   PROJECT PICKER (board view)
   ========================================================================== */
.ppicker {
  display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 1.2rem;
}
.ppicker a {
  font-family: var(--mono); font-size: .65rem; letter-spacing: .12em;
  text-transform: uppercase; padding: .35rem .7rem; border-radius: 999px;
  background: #fff; border: 1px solid var(--graphite-15); color: var(--graphite);
  text-decoration: none; transition: background .15s, color .15s, border-color .15s;
}
.ppicker a:hover { border-color: var(--cobalt); color: var(--cobalt); text-decoration: none; }
.ppicker a.is-active { background: var(--cobalt); color: #fff; border-color: var(--cobalt); }

/* ==========================================================================
   MULTI-PROJECT BOARD (admin)
   ========================================================================== */
.board-filter {
  display: flex; gap: .45rem; flex-wrap: wrap;
  margin: -.4rem 0 1.2rem;
}
.board-filter-chip {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--mono); font-size: .62rem; letter-spacing: .1em;
  text-transform: uppercase; padding: .35rem .75rem .35rem .5rem;
  border-radius: 999px;
  background: #fff; border: 1px solid var(--graphite-15); color: var(--graphite);
  cursor: pointer; transition: background .15s, color .15s, border-color .15s;
}
.board-filter-chip:hover { border-color: var(--cobalt); color: var(--cobalt); }
.board-filter-chip.is-active { background: var(--cobalt); color: #fff; border-color: var(--cobalt); }
.board-filter-chip.is-active .chip-count { background: rgba(255,255,255,.2); color: #fff; }
.chip-dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.chip-dot-all {
  background: var(--cobalt);
  background: linear-gradient(135deg, var(--cobalt) 0%, var(--cobalt) 50%, var(--amber) 50%, var(--amber) 100%);
}
.chip-count {
  font-family: var(--mono); font-size: .6rem; color: var(--graphite-60);
  background: rgba(35,33,28,.06); padding: 1px 7px; border-radius: 8px;
}
.kcard-project {
  display: inline-block; font-family: var(--mono); font-size: .55rem;
  letter-spacing: .12em; text-transform: uppercase; padding: 1px 8px;
  border-radius: 4px; align-self: flex-start; color: var(--graphite);
  white-space: nowrap; max-width: 100%; overflow: hidden; text-overflow: ellipsis;
}
.kcard-project[title] { cursor: help; }

/* ==========================================================================
   TOAST — quick bottom-right notice
   ========================================================================== */
.toast {
  position: fixed; bottom: 1.5rem; right: 1.5rem;
  background: var(--graphite); color: var(--bone);
  font-family: var(--body); font-size: .9rem;
  padding: .75rem 1.1rem; border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  z-index: 100; max-width: 360px;
  opacity: 0; transform: translateY(8px);
  transition: opacity .2s, transform .2s;
}
.toast.on { opacity: 1; transform: none; }

/* ==========================================================================
   UPCOMING TASKS — admin overview
   ========================================================================== */
.upcoming-table .upcoming-overdue { color: var(--stamp); font-weight: 500; }
.upcoming-table .upcoming-soon    { color: var(--amber); }
.upcoming-table .upcoming-future  { color: var(--graphite-60); }
.upcoming-table .upcoming-empty   { padding: 1.4rem; text-align: center; color: var(--graphite-60); font-style: italic; }
