/* works.css — PRECISION surface sheet: supplements + activities
   (docs/PRECISION.md §10, agent E). Absorbs the .sp-* and .act-* parts of
   new-screens.css, rewritten in token vocabulary. Loads last, so equal
   specificity wins ties against the transitional sheets; where new-screens
   used compound selectors, the same selectors are restated here.

   Shared vocabulary CONSUMED, never redefined: .btn*, .badge*, .chip*,
   .card, .field-label, .empty-state, .group-label (base/components.css);
   .eyebrow, .spinner, .home-note (student surface); .draft-messages,
   .draft-input, .draft-msg, .draft-doc, .seg.*, .draft-edit-actions,
   .draft-gold-dot (drafting sheet); .cmt-* (base + coach). */

/* ---- View containers (the shell mounts) ---------------------------------- */
/* Neutralize the transitional new-screens sizing so the .whead spans the
   workspace; the wraps below own the reading column. */
.supp,
.activities {
  max-width: none;
  margin: 0;
  padding: 0;
}

.sp-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 18px 24px 48px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.act-wrap {
  max-width: 940px;
  margin: 0 auto;
  padding: 18px 24px 48px;
}

/* ---- Workspace headers (.whead comes from shell.css) --------------------- */
.sp-whead h1,
.act-whead h1 {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sp-item-title {
  font-family: var(--ui);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
}
.act-head-side {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  flex-wrap: wrap;
}

/* ---- Supplements: list --------------------------------------------------- */
.sp-sub {
  font-family: var(--ui);
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--sub);
  max-width: 60ch;
  margin: 0;
}
.sp-ps-hint {
  font-size: 12px;
  color: var(--sub);
  background: var(--soft);
  border-radius: var(--r);
  padding: 8px 12px;
  margin: 0;
}

.sp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 10px;
  align-items: stretch;
}
.sp-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 14px 16px;
  cursor: pointer;
  transition: border-color 0.15s;
}
.sp-card:hover { border-color: var(--sub); box-shadow: none; }
.sp-card:focus-visible { outline: none; border-color: var(--gold); box-shadow: var(--focus); }
.sp-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.sp-card-school {
  font-family: var(--ui);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
}
.sp-card-q {
  font-family: var(--ui);
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--sub);
  margin: 0;
}
.sp-card-meta {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  font-family: var(--ui);
  font-size: 11px;
  color: var(--sub);
  margin: auto 0 0;
  padding-top: 4px;
}

/* The add form */
.sp-add {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 14px 16px;
}
.sp-add-title {
  font-family: var(--ui);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 2px;
}
.sp-add textarea, .sp-add input {
  width: 100%;
  font-family: var(--ui);
  font-size: 13.5px;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 7px 10px;
  resize: vertical;
}
.sp-add textarea:focus, .sp-add input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: var(--focus);
}
.sp-add-row { display: flex; gap: 10px; }
.sp-add-field { flex: 1; min-width: 0; }
.sp-add-limit { flex: 0 0 120px; }
.sp-add-error { font-size: 12px; color: var(--err); margin: 0; }
.sp-add-cta { display: flex; justify-content: flex-end; }

/* The school picker (SHIP_SPEC §4.3): search-as-you-type over the college
   list, free typing always allowed. Same dropdown recipe as the persona
   picker, in token vocabulary. */
.sp-school-combo { position: relative; }
.sp-school-options {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  max-height: 260px;
  overflow-y: auto;
  z-index: 30;
}
.sp-school-option {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 7px 11px;
  font: inherit;
  font-size: 13px;
  color: var(--ink);
  cursor: pointer;
}
.sp-school-option:last-child { border-bottom: none; }
.sp-school-option:hover { background: var(--soft); }
.sp-school-option:focus-visible { outline: none; box-shadow: inset 2px 0 0 var(--gold); }
.sp-school-none {
  padding: 7px 11px;
  font-size: 12px;
  color: var(--faint);
}

/* ---- The pasted question (also rendered in the coach review tab) --------- */
.supp-question {
  margin: 6px 0 10px;
  padding: 10px 14px;
  border-left: 2px solid var(--gold);
  background: var(--soft);
  border-radius: 0 var(--r) var(--r) 0;
  color: var(--ink);
  font-size: 13.5px;
  line-height: 1.6;
}
.sp-wrap .supp-question { margin: 0; }

/* ---- Supplements: gather ------------------------------------------------- */
.sp-type-row { display: flex; align-items: center; gap: 8px; }
.sp-type-row .sp-type-meta { margin-right: auto; }
.sp-type-label {
  font-family: var(--ui);
  font-size: 12px;
  font-weight: 500;
  color: var(--sub);
}
.sp-type-select {
  font-family: var(--ui);
  font-size: 12px;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 4px 8px;
}

/* Chat + composer inherit the drafting recipes; these are placement only. */
.sp-chat {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: var(--col);
  margin: 0 auto;
}
.sp-chat .draft-input textarea { min-height: 120px; }
.sp-digest-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ui);
  font-size: 12px;
  color: var(--sub);
  margin: 4px 0 10px;
}

/* ---- Supplements: the draft ---------------------------------------------- */
.sp-hint { font-size: 12.5px; color: var(--sub); margin: 0; }
.sp-toolbar {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  padding: 4px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.sp-statline {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--sub);
  white-space: nowrap;
  margin-left: auto;
}

.sp-doc-wrap {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--panel-w);
  gap: 16px;
  align-items: start;
}
.sp-doc {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 22px 26px;
}
.sp-rail { position: relative; min-width: 0; }
.sp-rail .cmt-card { position: absolute; left: 0; right: 0; }

.sp-edit-panel textarea {
  width: 100%;
  font-family: var(--ui);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 14px 16px;
  resize: vertical;
}
.sp-edit-panel textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: var(--focus);
}

@media (max-width: 900px) {
  .sp-doc-wrap { grid-template-columns: 1fr; }
  .sp-rail .cmt-card { position: static; margin-bottom: 8px; }
  .sp-add-row { flex-direction: column; }
  .sp-statline { margin-left: 0; }
}

/* ---- Activities: list ---------------------------------------------------- */
.act-sub {
  font-family: var(--ui);
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--sub);
  max-width: 60ch;
  margin: 0 0 14px;
}
.act-strip {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--bg);
  margin-bottom: 10px;
}
.act-strip p {
  font-family: var(--ui);
  font-size: 12.5px;
  color: var(--sub);
  margin: 0;
}
.act-strip + .home-note { margin-top: 0; margin-bottom: 10px; }

.act-quickadd { display: flex; gap: 8px; margin-bottom: 12px; }
.act-quickadd input {
  flex: 1;
  font-family: var(--ui);
  font-size: 13.5px;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 7px 10px;
}
.act-quickadd input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: var(--focus);
}

.act-rows {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--bg);
  overflow: hidden;
}
.act-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}
.act-row:last-child { border-bottom: none; }
.act-row:hover { background: var(--soft); }
.act-row:focus-visible { outline: none; box-shadow: inset 0 0 0 3px var(--gold-soft); }
.act-num {
  flex: 0 0 auto;
  width: 20px;
  height: auto;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  color: var(--faint);
  background: none;
  border-radius: 0;
}
.act-row-main { flex: 1; min-width: 0; }
.act-row-line { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.act-row-name {
  font-family: var(--ui);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 36ch;
}
.act-chip {
  font-family: var(--ui);
  font-size: 11px;
  color: var(--sub);
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: 1px 8px;
  white-space: nowrap;
}

/* Description state: dot + mono count. patchCounter/JS contract: .act-count
   gets/loses .over; .act-ind keeps .ok when a description exists. */
.act-ind {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  color: var(--faint);
  white-space: nowrap;
}
.act-ind::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--line);
  flex-shrink: 0;
}
.act-ind.prog::before { background: var(--gold); }
.act-ind.ok { color: var(--ok); font-weight: 400; }
.act-ind.ok::before { background: var(--ok); }

.act-row-actions { display: flex; gap: 0; flex: 0 0 auto; opacity: 0.55; }
.act-row:hover .act-row-actions,
.act-row:focus-within .act-row-actions { opacity: 1; }

.act-row-notes { margin-top: 4px; }
.act-row-note {
  font-family: var(--ui);
  font-size: 12px;
  color: var(--sub);
  background: var(--soft);
  border-left: 2px solid var(--gold);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 5px 9px;
  margin: 4px 0 0;
}
.act-note-label {
  font-family: var(--ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--sub);
  margin-right: 6px;
}

.act-empty { font-family: var(--ui); margin: 0; }
.act-rows .act-empty { border-radius: 0; }

.act-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  flex-wrap: wrap;
}

/* ---- Activities: the whole-list read ------------------------------------- */
.act-advice {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--bg);
  padding: 14px 16px 12px;
  margin-top: 14px;
}
.act-advice-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
/* Restated over new-screens' `.act-advice h3` so the label recipe wins. */
.act-advice .group-label {
  display: block;
  font-family: var(--ui);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--sub);
  margin: 0;
}
.act-advice h3.group-label { margin: 12px 0 4px; }
.act-advice-list { margin: 4px 0 0; padding-left: 18px; }
.act-advice-list li {
  font-family: var(--ui);
  font-size: 12.5px;
  color: var(--ink);
  line-height: 1.55;
  margin-bottom: 4px;
}
.act-advice-list b { color: var(--ink); font-weight: 600; }
.act-advice-order ol {
  margin: 4px 0 8px;
  padding-left: 20px;
  font-family: var(--ui);
  font-size: 12.5px;
  color: var(--ink);
}
.act-advice-none { font-family: var(--ui); font-size: 12.5px; color: var(--sub); margin: 4px 0 0; }
.act-advice-note { font-family: var(--ui); font-size: 12px; color: var(--faint); margin: 10px 0 0; }

/* ---- Activities: entry --------------------------------------------------- */
/* The coaches' instruction, given the weight of the brainstorm primer: white
   card, gold hairline, gold top bar (PRECISION §7's didactic accent, the one
   place gold carries instruction rather than state). */
.act-callout {
  position: relative;
  display: block;
  background: var(--bg);
  border: 1px solid var(--gold);
  border-radius: var(--r-lg);
  padding: 15px 18px 13px;
  margin: 0 0 14px;
  overflow: hidden;
}
.act-callout::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
}
.act-callout-title {
  font-family: var(--ui);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 5px;
}
.act-callout-text {
  font-family: var(--ui);
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink);
  max-width: 70ch;
  margin: 0;
}

.act-entry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: start;
}
.act-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 14px 16px;
}
.act-card > .group-label { display: block; margin-bottom: 10px; }

.act-field { margin-bottom: 12px; }
/* The Common App's own labels run long (the description field's is a full
   sentence), so the label wraps and the counter holds the right edge. */
.act-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  font-family: var(--ui);
  font-size: 12px;
  font-weight: 500;
  color: var(--sub);
  margin-bottom: 4px;
}
.act-label-text { flex: 1 1 auto; min-width: 0; line-height: 1.45; }
.act-label .act-count { flex: 0 0 auto; }
.act-help {
  font-family: var(--ui);
  font-size: 11.5px;
  line-height: 1.45;
  color: var(--faint);
  margin: -2px 0 4px;
}
.act-fields input[type="text"],
.act-fields input[type="number"],
.act-fields select,
.act-fields textarea {
  width: 100%;
  box-sizing: border-box;
  font-family: var(--ui);
  font-size: 13.5px;
  color: var(--ink);
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--bg);
}
.act-fields textarea { resize: vertical; line-height: 1.55; }
.act-fields input:focus, .act-fields select:focus, .act-fields textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: var(--focus);
}
.act-checks { display: flex; gap: 5px 14px; flex-wrap: wrap; }
.act-check {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ui);
  font-size: 12.5px;
  color: var(--ink);
  cursor: pointer;
}
.act-check input { accent-color: var(--navy); }
.act-field-nums { display: flex; gap: 10px; }
.act-num-field { flex: 1; }
.act-college { margin-top: 2px; }

/* patchCounter contract: textContent = "n/limit", classList toggles .over. */
.act-count {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  color: var(--faint);
  white-space: nowrap;
}
.act-count.over { color: var(--err); font-weight: 600; }

/* ---- Activities: the exchange (chat spec, PRECISION §6) ------------------ */
.act-chat-intro {
  font-family: var(--ui);
  font-size: 13px;
  line-height: 1.55;
  color: var(--sub);
  margin: 0 0 10px;
}
.act-msgs {
  display: flex;
  flex-direction: column;
  max-height: 420px;
  overflow-y: auto;
  margin-bottom: 10px;
  padding-right: 4px;
}
.act-msg {
  font-family: var(--ui);
  font-size: 15px;
  line-height: 1.6;
  white-space: pre-wrap;
  padding: 0;
  border-radius: 0;
  max-width: none;
}
.act-msg.coach {
  background: none;
  border-radius: 0;
  align-self: stretch;
  color: var(--ink);
  margin: 0 0 18px;
}
.act-msg.student {
  background: none;
  border-radius: 0;
  align-self: stretch;
  color: #37404e;
  margin: 0 0 22px 22px;
  padding-left: 16px;
  border-left: 2px solid var(--gold);
}
.act-thinking { color: var(--faint); letter-spacing: 0.2em; }
.act-micro-err {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ui);
  font-size: 12px;
  color: var(--err);
  margin: 0 0 10px;
}

/* Composer: bordered box, gold focus-within (§6). */
.act-chat-input {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 8px;
  background: var(--bg);
}
.act-chat-input:focus-within { border-color: var(--gold); box-shadow: var(--focus); }
.act-chat-input textarea {
  flex: 1;
  font-family: var(--ui);
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink);
  padding: 4px 6px;
  border: none;
  border-radius: 0;
  background: none;
  resize: vertical;
}
.act-chat-input textarea:focus { outline: none; border: none; box-shadow: none; }

/* ---- Activities: candidate lines ----------------------------------------- */
.act-cands { border-top: 1px solid var(--line); padding-top: 12px; margin: 4px 0 12px; }
.act-cands > .group-label { display: block; margin-bottom: 4px; }
.act-cands-note { font-family: var(--ui); font-size: 12px; color: var(--sub); margin: 0 0 8px; }
.act-cand {
  border: 1px solid var(--line);
  border-left: 2px solid var(--gold);
  border-radius: 0 var(--r) var(--r) 0;
  background: var(--bg);
  padding: 10px 12px;
  margin-bottom: 8px;
}
.act-cand:hover { border-color: var(--sub); border-left-color: var(--gold); }
.act-cand-text {
  font-family: var(--ui);
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 4px;
}
.act-cand-src {
  font-family: var(--ui);
  font-size: 11px;
  color: var(--faint);
  font-style: normal;
  margin: 0 0 8px;
}
.act-cand-src .badge { margin-left: 4px; }

/* ---- Activities: export -------------------------------------------------- */
.act-export .act-sub { margin-bottom: 12px; }
/* Whole-list actions: copy as text, save as a Doc, print. */
.act-x-tools {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 0 0 12px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 12px;
}
.act-x-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px 10px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.act-x-head .act-x-title { margin: 0; min-width: 0; }
.act-x-block {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--bg);
  padding: 12px 16px;
  margin-bottom: 10px;
}
.act-x-block.past-ten { border-style: dashed; }
.act-x-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ui);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 6px;
  flex-wrap: wrap;
}
.act-x-row {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: 4px 14px;
  align-items: baseline;
  padding: 5px 0;
  border-top: 1px solid var(--line);
}
.act-x-label { font-family: var(--ui); font-size: 12px; font-weight: 500; color: var(--sub); }
.act-x-value { font-family: var(--ui); font-size: 13.5px; color: var(--ink); overflow-wrap: anywhere; }
.act-x-value.empty { color: var(--faint); }

/* ---- Narrow screens ------------------------------------------------------ */
@media (max-width: 900px) {
  .act-entry-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .act-x-row { grid-template-columns: 1fr auto; }
  .act-x-label { grid-column: 1 / -1; }
}

@media (prefers-reduced-motion: reduce) {
  .sp-card { transition: none; }
}

/* ---- Print: the export sheet alone, black on white ----------------------- */
/* Scoped to the export view being visible so printing any other screen is
   untouched. The :has(#id) scope carries the specificity; no !important. */
@media print {
  body:has(#activitiesView:not(.hidden) .act-export) { background: #fff; }
  body:has(#activitiesView:not(.hidden) .act-export) .rail,
  body:has(#activitiesView:not(.hidden) .act-export) .rail-scrim,
  body:has(#activitiesView:not(.hidden) .act-export) .shell-topbar,
  body:has(#activitiesView:not(.hidden) .act-export) .toast,
  body:has(#activitiesView:not(.hidden) .act-export) .act-head-side,
  body:has(#activitiesView:not(.hidden) .act-export) .act-x-tools,
  body:has(#activitiesView:not(.hidden) .act-export) .act-copy-btn { display: none; }
  /* Unclip the scroll containers so the whole list paginates. */
  body:has(#activitiesView:not(.hidden) .act-export) .app-shell { display: block; height: auto; }
  body:has(#activitiesView:not(.hidden) .act-export) .workspace { display: block; overflow: visible; }
  body:has(#activitiesView:not(.hidden) .act-export) .workspace main { overflow: visible; }
  body:has(#activitiesView:not(.hidden) .act-export) .whead {
    border-bottom: none;
    padding: 0 0 6px;
    min-height: 0;
  }
  body:has(#activitiesView:not(.hidden) .act-export) .act-wrap { max-width: none; padding: 0; }
  body:has(#activitiesView:not(.hidden) .act-export) .act-x-block {
    break-inside: avoid;
    border-color: #000;
    margin-bottom: 8px;
  }
  body:has(#activitiesView:not(.hidden) .act-export) .whead h1,
  body:has(#activitiesView:not(.hidden) .act-export) .act-sub,
  body:has(#activitiesView:not(.hidden) .act-export) .act-x-title,
  body:has(#activitiesView:not(.hidden) .act-export) .act-x-label,
  body:has(#activitiesView:not(.hidden) .act-export) .act-x-value,
  body:has(#activitiesView:not(.hidden) .act-export) .act-num {
    color: #000;
    background: none;
    border: none;
  }
  body:has(#activitiesView:not(.hidden) .act-export) .badge {
    background: none;
    border: 1px solid #000;
    color: #000;
  }
}
