:root {
  --dashboard-ink: var(--shell-ink, #26332e);
  --dashboard-muted: var(--shell-muted, #6f7872);
  --dashboard-surface: var(--shell-surface, #f8f6ef);
  --dashboard-border: var(--shell-border, #d6d2c9);
  --dashboard-mint: var(--shell-mint, #a8cdbb);
  --dashboard-mint-light: var(--shell-mint-light, #ddebe3);
  --dashboard-mint-dark: var(--shell-mint-dark, #4f7564);
  --dashboard-raised: var(--shell-raised, 8px 10px 20px rgba(82, 80, 72, 0.2));
  --dashboard-raised-soft: var(--shell-raised-soft, 4px 6px 13px rgba(82, 80, 72, 0.16));
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--dashboard-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.dashboard-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(114, 115, 105, 0.15);
  background: rgba(242, 239, 231, 0.88);
  box-shadow: 0 8px 22px rgba(82, 80, 72, 0.1);
  padding: 8px 18px;
  backdrop-filter: blur(16px);
}

.dashboard-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.dashboard-brand img {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: var(--dashboard-raised-soft);
}

.dashboard-account {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dashboard-account > span {
  display: grid;
  text-align: right;
}

.dashboard-account small {
  color: var(--dashboard-muted);
}

.dashboard-account button {
  min-height: 38px;
  border: 0;
  border-radius: 14px;
  background: var(--dashboard-surface);
  box-shadow: var(--dashboard-raised-soft);
  color: var(--dashboard-ink);
  cursor: pointer;
  padding: 0 14px;
}

.dashboard-workspace {
  width: min(1440px, 100%);
  margin: 0 auto;
  padding: clamp(24px, 4vw, 54px);
}

.dashboard-hero,
.dashboard-section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.dashboard-hero {
  align-items: center;
  margin-bottom: 24px;
}

.eyebrow {
  margin: 0 0 7px;
  color: var(--dashboard-mint-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.25rem, 5vw, 4.8rem);
}

h2 {
  font-size: clamp(1.25rem, 2vw, 1.8rem);
}

.dashboard-hero > div > p:last-child {
  margin: 9px 0 0;
  color: var(--dashboard-muted);
  font-size: 1rem;
}

.calendar-status {
  display: grid;
  min-width: min(100%, 270px);
  gap: 3px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 20px;
  background: var(--dashboard-surface);
  box-shadow: var(--dashboard-raised-soft);
  padding: 15px 18px;
}

.calendar-status span {
  color: var(--dashboard-muted);
  font-size: 0.75rem;
  font-weight: 800;
}

.calendar-status strong {
  font-size: 0.92rem;
}

.calendar-status.stale {
  border-color: rgba(181, 126, 46, 0.5);
}

.dashboard-message {
  min-height: 24px;
  margin: 0 0 12px;
  color: var(--dashboard-muted);
}

.dashboard-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 26px;
}

.summary-card,
.dashboard-section,
.dashboard-panel {
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: var(--dashboard-surface);
  box-shadow: var(--dashboard-raised);
}

.summary-card {
  display: grid;
  min-height: 112px;
  align-content: space-between;
  border-radius: 22px;
  padding: 18px;
}

.summary-card span {
  color: var(--dashboard-muted);
  font-size: 0.78rem;
  font-weight: 850;
}

.summary-card strong {
  color: var(--dashboard-mint-dark);
  font-size: 2rem;
  line-height: 1;
}

.dashboard-section,
.dashboard-panel {
  border-radius: 26px;
  padding: clamp(18px, 3vw, 28px);
}

.dashboard-priority {
  display: grid;
  align-self: start;
  margin-bottom: 0;
}

.dashboard-section-head {
  align-items: center;
  margin-bottom: 18px;
}

.dashboard-section-head > span,
.panel-link {
  border-radius: 999px;
  background: var(--dashboard-mint-light);
  color: var(--dashboard-mint-dark);
  box-shadow: var(--dashboard-raised-soft);
  font-size: 0.76rem;
  font-weight: 900;
  padding: 8px 13px;
}

.action-list,
.today-list {
  display: grid;
  gap: 11px;
}

.dashboard-priority .action-list {
  max-height: min(58vh, 680px);
  overflow: auto;
  padding-right: 4px;
}

.action-card,
.today-row {
  display: grid;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--dashboard-border);
  border-radius: 18px;
  background: color-mix(in srgb, var(--dashboard-surface) 88%, var(--dashboard-mint-light));
  box-shadow: var(--dashboard-raised-soft);
  padding: 13px 15px;
}

.action-card {
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.action-card.action-danger {
  border-color: rgba(185, 68, 57, 0.36);
  background: color-mix(in srgb, #f4aaa0 26%, var(--dashboard-surface));
}

.action-card.action-danger .action-icon,
.action-card.action-danger .action-link {
  background: #d96b61;
  color: #fffaf7;
}

.action-card.action-success {
  border-color: rgba(79, 117, 100, 0.32);
  background: color-mix(in srgb, var(--dashboard-mint-light) 48%, var(--dashboard-surface));
}

.action-card.action-success .action-icon,
.action-card.action-success .action-link {
  background: var(--dashboard-mint);
  color: #244f40;
}

.action-icon {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: var(--dashboard-mint);
  color: #235c49;
  font-weight: 950;
}

.action-copy,
.today-copy {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.action-copy span,
.today-copy span {
  color: var(--dashboard-muted);
  font-size: 0.78rem;
}

.action-link {
  appearance: none;
  border: 0;
  border-radius: 13px;
  background: var(--dashboard-mint);
  color: #244f40;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 900;
  padding: 9px 12px;
  text-align: center;
}

.action-link:disabled {
  cursor: wait;
  opacity: 0.72;
}

.action-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
}

.action-link.secondary {
  background: color-mix(in srgb, var(--dashboard-surface) 80%, #ffffff);
  color: var(--dashboard-ink);
}

.action-card.action-danger .action-link.secondary,
.action-card.action-success .action-link.secondary {
  background: color-mix(in srgb, var(--dashboard-surface) 80%, #ffffff);
  color: var(--dashboard-ink);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: stretch;
  gap: 22px;
}

.dashboard-grid.single-panel {
  grid-template-columns: 1fr;
}

.dashboard-left-stack {
  display: grid;
  align-content: start;
  gap: 22px;
  min-width: 0;
}

.dashboard-today-planning {
  margin-bottom: 22px;
}

.dashboard-today-planning .today-list {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.dashboard-time-counter {
  display: grid;
  gap: 10px;
  margin: -6px 0 22px;
  padding: 16px;
}

.dashboard-time-counter .dashboard-section-head {
  margin-bottom: 0;
}

.dashboard-time-counter .dashboard-section-head > span {
  flex: 0 0 auto;
  border-radius: 999px;
  background: color-mix(in srgb, var(--dashboard-mint-light) 76%, #ffffff);
  color: var(--dashboard-mint-dark);
  box-shadow: none;
  font-size: 0.68rem;
  padding: 6px 10px;
}

.dashboard-time-counter-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(158px, 1fr));
  gap: 8px;
}

.dashboard-time-pill {
  display: grid;
  gap: 7px;
  min-width: 0;
  border: 1px solid color-mix(in srgb, var(--resource-color, var(--dashboard-mint)) 24%, var(--dashboard-border));
  border-radius: 8px;
  background: color-mix(in srgb, var(--dashboard-surface) 92%, #ffffff);
  color: inherit;
  cursor: pointer;
  padding: 8px;
  text-decoration: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.dashboard-time-pill:hover,
.dashboard-time-pill:focus-visible {
  border-color: color-mix(in srgb, var(--resource-color, var(--dashboard-mint)) 46%, var(--dashboard-border));
  box-shadow: 0 8px 20px rgba(33, 46, 42, 0.08);
  transform: translateY(-1px);
}

.dashboard-time-pill:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--resource-color, var(--dashboard-mint)) 60%, #ffffff);
  outline-offset: 2px;
}

.time-pill-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 6px;
}

.time-pill-head > span {
  width: 20px;
  height: 20px;
  border: 1px solid color-mix(in srgb, var(--resource-color, var(--dashboard-mint)) 40%, #ffffff);
  border-radius: 999px;
  background: color-mix(in srgb, var(--resource-color, var(--dashboard-mint)) 28%, #ffffff);
}

.time-pill-head strong {
  min-width: 0;
  font-size: 0.82rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.time-pill-head em {
  color: var(--dashboard-ink);
  font-size: 1.05rem;
  font-style: normal;
  font-weight: 950;
  line-height: 1;
}

.dashboard-time-pill.positive .time-pill-head em {
  color: #28745f;
}

.dashboard-time-pill.negative .time-pill-head em {
  color: #a84c43;
}

.dashboard-time-pill.warning .time-pill-head em {
  color: #9a6a22;
}

.dashboard-time-pill dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 5px;
  margin: 0;
}

.dashboard-time-pill dl > div {
  min-width: 0;
  border-top: 1px solid rgba(114, 115, 105, 0.16);
  padding-top: 5px;
}

.dashboard-time-pill dt,
.dashboard-time-pill dd {
  margin: 0;
}

.dashboard-time-pill dt {
  color: var(--dashboard-muted);
  font-size: 0.57rem;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}

.dashboard-time-pill dd {
  color: var(--dashboard-ink);
  font-size: 0.75rem;
  font-weight: 950;
  line-height: 1.2;
}

.dashboard-time-counter-status {
  min-height: 0;
  margin-top: -2px;
  font-size: 0.72rem;
}

.today-row {
  grid-template-columns: 10px minmax(0, 1fr) auto;
}

.today-color {
  width: 10px;
  height: 42px;
  border-radius: 999px;
  background: var(--resource-color, var(--dashboard-mint));
}

.today-row > span:last-child {
  color: var(--dashboard-muted);
  font-size: 0.75rem;
  font-weight: 800;
}

.empty-state {
  margin: 0;
  border: 1px dashed var(--dashboard-border);
  border-radius: 18px;
  color: var(--dashboard-muted);
  padding: 20px;
  text-align: center;
}

.quick-actions {
  display: none;
}

.manager-tools {
  align-self: start;
  margin-top: 0;
}

.dashboard-notes-panel {
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr);
  align-self: stretch;
  min-height: min(80vh, 920px);
}

.dashboard-notes-panel .dashboard-section-head {
  margin-bottom: 10px;
}

.notes-panel-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.notes-panel-actions > span {
  border-radius: 999px;
  background: var(--dashboard-mint-light);
  color: var(--dashboard-mint-dark);
  box-shadow: 2px 3px 8px rgba(82, 80, 72, 0.14), -2px -2px 6px rgba(255, 255, 255, 0.62);
  font-size: 0.7rem;
  font-weight: 900;
  padding: 5px 10px;
}

.dashboard-note-tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  align-self: start;
  gap: 6px;
  margin: -4px 0 8px;
}

.dashboard-note-tab {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--dashboard-mint) 22%, var(--dashboard-border));
  border-radius: 999px;
  background: color-mix(in srgb, var(--dashboard-surface) 90%, var(--dashboard-mint-light));
  box-shadow: 2px 3px 8px rgba(82, 80, 72, 0.14), -2px -2px 6px rgba(255, 255, 255, 0.62);
  color: var(--dashboard-ink);
  cursor: pointer;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  max-width: max-content;
  min-height: 29px;
  padding: 4px 10px;
  white-space: nowrap;
}

.dashboard-note-tab:hover,
.dashboard-note-tab:focus-visible {
  border-color: var(--dashboard-mint);
  outline: none;
}

.dashboard-note-tab.active {
  background: var(--dashboard-mint);
  color: #244f40;
}

html[data-theme="dark"] .notes-panel-actions > span,
html[data-theme="dark"] .dashboard-note-tab {
  box-shadow: 2px 3px 8px rgba(4, 9, 7, 0.36), -1px -1px 5px rgba(91, 116, 105, 0.1);
}

.icon-print-button {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 14px;
  background: var(--dashboard-mint);
  box-shadow: var(--dashboard-raised-soft);
  color: #244f40;
  cursor: pointer;
  padding: 0;
}

.icon-print-button svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.manager-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.absence-grid {
  align-content: start;
}

.manager-card {
  display: grid;
  gap: 14px;
  border: 1px solid var(--dashboard-border);
  border-radius: 22px;
  background: color-mix(in srgb, var(--dashboard-surface) 90%, var(--dashboard-mint-light));
  box-shadow: var(--dashboard-raised-soft);
  padding: 18px;
}

.manager-card h3 {
  margin: 0;
  font-size: 1.05rem;
}

.manager-card-notes {
  position: relative;
  grid-template-rows: minmax(0, 1fr) auto;
  min-height: 100%;
  gap: 8px;
  overflow: hidden;
  padding: 12px;
}

.notes-card-logo {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 1;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  box-shadow: var(--dashboard-raised-soft);
  object-fit: cover;
  opacity: 0.72;
  pointer-events: none;
}

.manager-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

html[data-theme="dark"] .manager-card {
  border-color: var(--dashboard-border);
  background: color-mix(in srgb, var(--dashboard-surface) 88%, var(--dashboard-mint-light));
  color: var(--dashboard-ink);
}

html[data-theme="dark"] .notes-card-logo {
  opacity: 0.82;
  box-shadow: 0 8px 18px rgba(2, 7, 5, 0.38);
}

.absence-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.absence-form label,
.notes-field {
  display: grid;
  gap: 6px;
  color: var(--dashboard-muted);
  font-size: 0.78rem;
  font-weight: 850;
}

.absence-form .form-full {
  grid-column: 1 / -1;
}

.absence-form input,
.absence-form select,
.notes-field textarea {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--dashboard-border);
  border-radius: 14px;
  background: var(--dashboard-surface);
  box-shadow: inset 2px 2px 6px rgba(0, 0, 0, 0.08), inset -2px -2px 6px rgba(255, 255, 255, 0.32);
  color: var(--dashboard-ink);
  font: inherit;
  padding: 10px 12px;
}

.notes-field textarea {
  min-height: 190px;
  resize: vertical;
}

.notes-field-expanded,
.notes-field-expanded textarea {
  min-height: 100%;
}

.notes-field-expanded > span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.notes-field-expanded textarea {
  min-height: clamp(540px, 72vh, 900px);
  padding: 14px 16px;
}

.notes-print-copy {
  display: none;
}

.absence-form button {
  grid-column: 1 / -1;
  min-height: 44px;
  border: 0;
  border-radius: 16px;
  background: var(--dashboard-mint);
  box-shadow: var(--dashboard-raised-soft);
  color: #244f40;
  cursor: pointer;
  font-weight: 950;
}

.dashboard-inline-status {
  min-height: 20px;
  margin: 0;
  color: var(--dashboard-muted);
  font-size: 0.82rem;
}

body.dashboard-atelier-view .calendar-status,
body.dashboard-atelier-view .dashboard-summary,
body.dashboard-atelier-view #absence-panel,
body.dashboard-atelier-view .quick-actions,
body.dashboard-atelier-view #manager-tools {
  display: none !important;
}

@media (max-width: 980px) {
  .dashboard-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-notes-panel {
    min-height: auto;
  }

  .manager-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .dashboard-topbar {
    padding: 7px 10px;
  }

  .dashboard-account > span {
    display: none;
  }

  .dashboard-workspace {
    padding: 20px 14px 108px;
  }

  .dashboard-hero {
    align-items: stretch;
    flex-direction: column;
  }

  .calendar-status {
    width: 100%;
  }

  .dashboard-summary {
    gap: 10px;
  }

  .summary-card {
    min-height: 98px;
    padding: 14px;
  }

  .action-card {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .dashboard-priority .action-list {
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }

  .action-link {
    grid-column: 1 / -1;
    text-align: center;
  }

  .action-actions {
    grid-column: 1 / -1;
    justify-content: stretch;
  }

  .action-actions .action-link {
    flex: 1;
  }

  .quick-actions {
    position: fixed;
    right: calc(var(--shell-rail-width, 72px) + 14px);
    bottom: 12px;
    left: 12px;
    z-index: 80;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    border: 1px solid rgba(255, 255, 255, 0.66);
    border-radius: 20px;
    background: rgba(242, 239, 231, 0.94);
    box-shadow: var(--dashboard-raised);
    padding: 8px;
    backdrop-filter: blur(18px);
  }

  .quick-actions a {
    display: flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: var(--dashboard-surface);
    box-shadow: var(--dashboard-raised-soft);
    font-size: 0.68rem;
    font-weight: 900;
    padding: 6px;
    text-align: center;
  }

  .absence-form {
    grid-template-columns: 1fr;
  }

  .notes-field-expanded textarea {
    min-height: 360px;
  }

  .notes-card-logo {
    top: 18px;
    right: 18px;
    width: 34px;
    height: 34px;
    border-radius: 11px;
  }
}

@media print {
  @page {
    size: A4 portrait;
    margin: 12mm;
  }

  body.print-dashboard-notes {
    background: #ffffff !important;
    color: #111111 !important;
  }

  body.print-dashboard-notes .dashboard-topbar,
  body.print-dashboard-notes .dashboard-hero,
  body.print-dashboard-notes .dashboard-message,
  body.print-dashboard-notes .dashboard-today-planning,
  body.print-dashboard-notes .dashboard-summary,
  body.print-dashboard-notes .dashboard-left-stack,
  body.print-dashboard-notes .quick-actions,
  body.print-dashboard-notes .dashboard-note-tabs,
  body.print-dashboard-notes .notes-panel-actions,
  body.print-dashboard-notes .dashboard-notes-panel .dashboard-section-head p {
    display: none !important;
  }

  body.print-dashboard-notes .dashboard-workspace {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  body.print-dashboard-notes .dashboard-grid {
    display: block !important;
  }

  body.print-dashboard-notes .dashboard-notes-panel {
    display: block !important;
    min-height: auto !important;
    border: 0 !important;
    background: #ffffff !important;
    box-shadow: none !important;
    padding: 0 !important;
  }

  body.print-dashboard-notes .dashboard-notes-panel .dashboard-section-head {
    display: block !important;
    margin-bottom: 8mm !important;
  }

  body.print-dashboard-notes .dashboard-notes-panel h2 {
    color: #111111 !important;
    font-size: 18pt !important;
  }

  body.print-dashboard-notes .manager-card-notes {
    position: relative !important;
    display: block !important;
    min-height: 0 !important;
    border: 0 !important;
    background: #ffffff !important;
    box-shadow: none !important;
    padding: 0 !important;
  }

  body.print-dashboard-notes .notes-card-logo {
    display: block !important;
    top: 0 !important;
    right: 0 !important;
    width: 13mm !important;
    height: 13mm !important;
    border-radius: 3mm !important;
    box-shadow: none !important;
    opacity: 0.9 !important;
  }

  body.print-dashboard-notes .notes-field-expanded {
    display: none !important;
  }

  body.print-dashboard-notes .notes-print-copy {
    display: block !important;
    width: 100% !important;
    min-height: auto !important;
    border: 1px solid #d8d8d8 !important;
    border-radius: 0 !important;
    background: #ffffff !important;
    box-shadow: none !important;
    color: #111111 !important;
    font-size: 11pt !important;
    line-height: 1.45 !important;
    overflow: visible !important;
    overflow-wrap: anywhere !important;
    padding: 17mm 7mm 7mm !important;
    white-space: pre-wrap !important;
    word-break: break-word !important;
    break-inside: auto !important;
    page-break-inside: auto !important;
  }

  body.print-dashboard-notes #notes-status {
    display: none !important;
  }
}

html[data-theme="dark"] .dashboard-topbar {
  border-color: rgba(125, 151, 139, 0.2);
  background: rgba(24, 33, 30, 0.94);
  box-shadow: 0 10px 26px rgba(2, 7, 5, 0.44);
}

html[data-theme="dark"] .dashboard-brand,
html[data-theme="dark"] .dashboard-account strong {
  color: var(--dashboard-ink);
}

html[data-theme="dark"] .dashboard-account small {
  color: var(--dashboard-muted);
}

html[data-theme="dark"] .dashboard-account button {
  border: 1px solid var(--dashboard-border);
  background: var(--dashboard-surface);
  color: var(--dashboard-ink);
  box-shadow: var(--dashboard-raised-soft);
}
