:root {
  color-scheme: light;
  --ink: #17201a;
  --muted: #657065;
  --line: #d8ded4;
  --panel: #ffffff;
  --soft: #f5f7f1;
  --soft-2: #edf3e8;
  --brand: #176b52;
  --brand-2: #9b4d2e;
  --gold: #d8a52f;
  --blue: #3267a8;
  --red: #bd4a43;
  --green: #267a4d;
  --shadow: 0 18px 50px rgba(23, 32, 26, 0.1);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(245, 247, 241, 0.88) 220px),
    var(--soft);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.shell {
  display: grid;
  grid-template-columns: 264px minmax(0, 1fr);
  min-height: 100vh;
}

.sidebar {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0)),
    #102019;
  color: #f3f7f1;
  padding: 18px 14px;
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 12px 0 34px rgba(16, 32, 25, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.mark {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: linear-gradient(135deg, #f3c75d, #42a47f);
  display: grid;
  place-items: center;
  color: #102019;
  font-weight: 900;
  flex: 0 0 auto;
}

.brand strong {
  display: block;
  font-size: 17px;
}

.brand span,
.tiny {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.nav {
  display: grid;
  gap: 4px;
}

.nav button {
  border: 0;
  color: rgba(255, 255, 255, 0.78);
  background: transparent;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 11px;
  border-radius: 8px;
  text-align: left;
  min-height: 40px;
  font-weight: 760;
}

.nav button.active,
.nav button:hover {
  background: rgba(255, 255, 255, 0.12);
  color: white;
}

.nav button.active {
  box-shadow: inset 3px 0 0 #f3c75d;
}

.side-card {
  margin-top: auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  padding: 12px;
}

.side-card strong {
  display: block;
  margin-bottom: 6px;
}

.main {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 4;
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: rgba(250, 251, 247, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.topbar h1 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: 0;
}

.topbar p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.actions,
.row,
.filters,
.tabs,
.button-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.content {
  width: min(1480px, 100%);
  padding: 24px;
  display: grid;
  gap: 18px;
}

.grid {
  display: grid;
  gap: 14px;
}

.grid.cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.panel,
.card,
.modal-box {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 1px 0 rgba(23, 32, 26, 0.03), 0 12px 28px rgba(23, 32, 26, 0.045);
}

.panel {
  padding: 18px;
}

.card {
  padding: 15px;
  min-width: 0;
}

.card,
.panel {
  min-width: 0;
}

.card p,
.panel p {
  line-height: 1.45;
}

.metric {
  display: grid;
  gap: 8px;
  align-content: start;
  min-height: 124px;
}

.metric span {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 800;
}

.metric strong {
  font-size: 30px;
}

.metric small {
  color: var(--green);
}

.btn,
.icon-btn {
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
  border-radius: 8px;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 12px;
  font-weight: 750;
  transition: transform 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease, background 0.12s ease;
}

.btn:hover,
.icon-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(23, 32, 26, 0.08);
}

.btn.primary {
  background: var(--brand);
  border-color: var(--brand);
  color: white;
}

.btn.warn {
  background: #fff5e1;
  border-color: #ecd19a;
  color: #744312;
}

.btn.danger {
  color: white;
  background: var(--red);
  border-color: var(--red);
}

.icon-btn {
  width: 38px;
  padding: 0;
}

.input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 11px;
  background: white;
  color: var(--ink);
  min-height: 38px;
  outline: none;
}

.input:focus,
textarea:focus,
select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 16%, transparent);
}

textarea {
  min-height: 96px;
  resize: vertical;
}

label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
  background: white;
}

th,
td {
  text-align: left;
  padding: 11px 9px;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}

th {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  background: #f8faf5;
  position: sticky;
  top: 0;
  z-index: 1;
}

tr:hover td {
  background: #fbfcf8;
}

.pill,
.tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 12px;
  font-weight: 800;
  background: var(--soft-2);
  color: #335341;
  white-space: nowrap;
  max-width: 100%;
}

.tag.hot {
  color: #7d2e22;
  background: #ffe9e4;
}

.tag.warm {
  color: #775113;
  background: #fff2cf;
}

.tag.won {
  color: #17603c;
  background: #dff2e8;
}

.tag.new {
  color: #285b90;
  background: #e4f0ff;
}

.kanban {
  display: grid;
  grid-template-columns: repeat(5, minmax(190px, 1fr));
  gap: 12px;
  overflow: auto;
  padding-bottom: 4px;
  scroll-snap-type: x proximity;
}

.column {
  background: #eef2ea;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  min-height: 260px;
  scroll-snap-align: start;
}

.column h3 {
  margin: 2px 0 10px;
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
}

.lead-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 8px;
  display: grid;
  gap: 6px;
  transition: border-color 0.12s ease, transform 0.12s ease;
}

.lead-card:hover {
  border-color: color-mix(in srgb, var(--brand) 38%, var(--line));
  transform: translateY(-1px);
}

.lead-card strong {
  font-size: 14px;
}

.muted {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 380px);
  gap: 14px;
}

.detail {
  display: grid;
  gap: 12px;
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #e2eee5;
  color: #184b39;
  font-weight: 900;
  flex: 0 0 auto;
}

.timeline {
  display: grid;
  gap: 10px;
}

.event {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 8px;
}

.event i {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--soft-2);
  font-style: normal;
}

.progress {
  height: 8px;
  background: #e4e8df;
  border-radius: 999px;
  overflow: hidden;
}

.progress b {
  display: block;
  height: 100%;
  background: var(--brand);
}

.segmented {
  display: inline-grid;
  grid-auto-flow: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.segmented button {
  border: 0;
  padding: 9px 12px;
  background: white;
  color: var(--muted);
  font-weight: 800;
}

.segmented button.active {
  background: var(--brand);
  color: white;
}

.modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(16, 32, 25, 0.38);
  backdrop-filter: blur(4px);
  z-index: 10;
}

.modal-box {
  width: min(760px, 100%);
  max-height: min(760px, 92vh);
  overflow: auto;
  padding: 18px;
  box-shadow: var(--shadow);
}

.modal-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  margin-bottom: 14px;
}

.modal-head h2,
.panel h2,
.panel h3,
.card h3 {
  margin: 0;
}

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

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #102019;
  color: white;
  padding: 12px 14px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  z-index: 20;
}

.empty {
  padding: 28px;
  text-align: center;
  color: var(--muted);
  border: 1px dashed var(--line);
  border-radius: 8px;
  background: #fbfcf8;
}

.mobile-bar {
  display: none;
}

.mobile-bar button.active {
  background: #f3c75d;
  color: #102019;
}

.auth-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 20px;
  background:
    radial-gradient(circle at 18% 12%, rgba(63, 161, 125, 0.2), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(216, 165, 47, 0.2), transparent 26%),
    linear-gradient(135deg, #f7f5ed, #e6f0ea);
}

.auth-card {
  width: min(440px, 100%);
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.auth-card h1 {
  margin: 18px 0 8px;
}

.auth-brand {
  color: #f3f7f1;
  background: #102019;
  border: 0;
  border-radius: 8px;
  padding: 12px;
}

.auth-form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.login-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 14px 0;
}

.error {
  min-height: 18px;
  margin: 0;
  color: var(--red);
  font-weight: 800;
}

.bar-tabs {
  border-bottom: 1px solid var(--line);
  margin: 10px 0 16px;
  gap: 22px;
}

.bar-tabs button {
  border: 0;
  background: transparent;
  padding: 12px 0;
  font-weight: 900;
  color: var(--ink);
  border-bottom: 2px solid transparent;
}

.bar-tabs button.active {
  color: var(--brand);
  border-bottom-color: var(--brand);
}

.activity-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 22px;
}

.mini-calendar {
  display: grid;
  gap: 10px;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  align-items: center;
  text-align: center;
}

.calendar-grid button {
  border: 0;
  border-radius: 999px;
  background: transparent;
  min-height: 32px;
}

.calendar-grid button.active {
  background: var(--brand);
  color: white;
}

.filter-list {
  display: grid;
  gap: 2px;
}

.check-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 14px;
}

.timeline-band {
  text-align: center;
  color: var(--muted);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 10px;
  margin: 14px 0;
  font-size: 12px;
}

.content-workspace,
.team-workspace {
  width: min(1040px, 100%);
}

.notice {
  display: grid;
  gap: 6px;
  background: #f7eaff;
  color: #8b35c8;
  padding: 14px;
  border-radius: 8px;
  margin-bottom: 18px;
}

.assignment-visual {
  display: grid;
  gap: 18px;
  place-items: center;
  padding: 34px 20px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-bottom: 18px;
}

.source-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.source-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 82px;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 8px;
  background: var(--soft-2);
  font-weight: 900;
  color: var(--brand);
}

.assign-box {
  text-align: center;
  border: 1px solid #c7d6ff;
  background: #f7f8ff;
  border-radius: 8px;
  padding: 18px 28px;
  font-weight: 900;
  box-shadow: var(--shadow-sm);
}

.content-detail {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  position: relative;
}

.preview-box {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  min-height: 220px;
  box-shadow: var(--shadow-sm);
}

.preview-box pre {
  white-space: pre-wrap;
  font-family: inherit;
  line-height: 1.55;
  margin: 0;
}

.file-cover {
  min-height: 210px;
  display: grid;
  place-items: center;
  gap: 8px;
  text-align: center;
  color: white;
  background:
    linear-gradient(135deg, rgba(88, 94, 210, 0.72), rgba(194, 95, 233, 0.62)),
    linear-gradient(45deg, #b7d9ff, #d9b7ff);
  border-radius: 8px;
  margin-bottom: 12px;
}

.file-cover strong {
  font-size: 30px;
  max-width: 78%;
}

.options-menu {
  position: absolute;
  top: 54px;
  right: 0;
  z-index: 2;
  display: grid;
  min-width: 240px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.options-menu button {
  border: 0;
  background: white;
  text-align: left;
  padding: 13px 16px;
}

.options-menu button:hover {
  background: var(--soft);
}

.danger-text {
  color: var(--red);
}

.stacked-form {
  display: grid;
  gap: 16px;
}

.field-help {
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
}

.link-button {
  border: 0;
  background: transparent;
  color: var(--brand);
  font-weight: 900;
  padding: 0;
}

.connect-list {
  display: grid;
  gap: 10px;
}

.connect-option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 12px;
  align-items: center;
  width: 100%;
  border: 1px solid var(--line);
  background: #fbfcf8;
  border-radius: 8px;
  padding: 14px;
  text-align: left;
}

.connect-option span {
  color: var(--green);
  font-weight: 900;
}

.connect-option small {
  color: var(--ink);
  grid-column: 1;
}

.connect-option b {
  grid-row: 1 / span 2;
  grid-column: 2;
  font-size: 22px;
}

@media (max-width: 1000px) {
  .shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    display: none;
  }

  .mobile-bar {
    display: flex;
    overflow: auto;
    gap: 6px;
    padding: 9px 12px;
    background: #102019;
    position: sticky;
    top: 0;
    z-index: 5;
    scrollbar-width: none;
  }

  .mobile-bar::-webkit-scrollbar {
    display: none;
  }

  .mobile-bar button {
    white-space: nowrap;
    border: 0;
    background: rgba(255, 255, 255, 0.09);
    color: white;
    border-radius: 8px;
    padding: 9px 10px;
    min-height: 38px;
    font-weight: 800;
  }

  .grid.cols-2,
  .grid.cols-3,
  .grid.cols-4 {
    grid-template-columns: 1fr;
  }

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

  .topbar {
    top: 56px;
  }

  .content {
    width: 100%;
  }
}

@media (max-width: 620px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px;
    gap: 12px;
  }

  .content {
    padding: 12px;
    gap: 12px;
  }

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

  .metric strong {
    font-size: 24px;
  }

  .actions,
  .button-row,
  .filters {
    width: 100%;
  }

  .actions .btn,
  .actions .pill,
  .button-row .btn,
  .filters label {
    flex: 1 1 150px;
  }

  .btn {
    min-height: 42px;
  }

  .panel,
  .card {
    padding: 14px;
  }

  .grid {
    gap: 12px;
  }

  .kanban {
    grid-template-columns: repeat(5, minmax(250px, 84vw));
  }

  table {
    min-width: 680px;
  }

  .modal {
    align-items: end;
    padding: 0;
  }

  .modal-box {
    width: 100%;
    max-height: 88vh;
    border-radius: 8px 8px 0 0;
    padding: 16px;
  }

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

@media (min-width: 1001px) and (max-width: 1220px) {
  .shell {
    grid-template-columns: 228px minmax(0, 1fr);
  }

  .grid.cols-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid.cols-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Modern product UI refinement layer */
:root {
  --ink: #18221d;
  --muted: #68746c;
  --line: #dce3dc;
  --soft: #f6f7f4;
  --soft-2: #eef4ed;
  --brand: #126a52;
  --brand-2: #af5b35;
  --blue: #2f65a7;
  --shadow: 0 20px 54px rgba(24, 34, 29, 0.12);
  --shadow-sm: 0 10px 26px rgba(24, 34, 29, 0.07);
  --surface: rgba(255, 255, 255, 0.86);
}

body {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 247, 244, 0.9) 270px),
    linear-gradient(90deg, rgba(18, 106, 82, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(47, 101, 167, 0.035) 1px, transparent 1px),
    var(--soft);
  background-size: auto, 48px 48px, 48px 48px, auto;
}

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

.shell {
  grid-template-columns: 276px minmax(0, 1fr);
}

.sidebar {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    linear-gradient(145deg, #102019, #13291f 58%, #0d1713);
  box-shadow: 18px 0 46px rgba(16, 32, 25, 0.1);
}

.brand {
  padding-top: 10px;
}

.mark {
  width: 40px;
  height: 40px;
  box-shadow: 0 12px 28px rgba(243, 199, 93, 0.18);
}

.nav button {
  min-height: 42px;
  padding: 10px 12px;
  position: relative;
  font-weight: 780;
}

.nav button.active {
  box-shadow: inset 3px 0 0 #f3c75d, 0 10px 24px rgba(0, 0, 0, 0.08);
}

.nav button span,
.mobile-bar button span {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.1);
  color: #f7d36f;
  font-size: 11px;
  font-weight: 900;
  flex: 0 0 auto;
}

.side-card {
  background: rgba(255, 255, 255, 0.075);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.topbar {
  padding: 18px 26px;
  background: rgba(250, 251, 248, 0.9);
  backdrop-filter: blur(18px) saturate(1.05);
}

.topbar h1 {
  font-size: 25px;
}

.topbar p {
  max-width: 720px;
}

.content {
  padding: 26px;
  gap: 20px;
}

.grid {
  gap: 16px;
}

.panel,
.card,
.modal-box {
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.card,
.lead-card {
  transition: transform 0.14s ease, box-shadow 0.14s ease, border-color 0.14s ease;
}

.card:hover,
.lead-card:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--brand) 22%, var(--line));
  box-shadow: 0 18px 38px rgba(24, 34, 29, 0.09);
}

.metric {
  background:
    linear-gradient(135deg, rgba(18, 106, 82, 0.075), rgba(215, 161, 45, 0.055)),
    var(--surface);
}

.metric strong {
  font-size: 31px;
  line-height: 1;
}

.btn,
.icon-btn {
  background: rgba(255, 255, 255, 0.94);
}

.btn.primary {
  background: linear-gradient(135deg, var(--brand), #1b8263);
  box-shadow: 0 12px 22px rgba(18, 106, 82, 0.18);
}

.input,
textarea,
select {
  background: rgba(255, 255, 255, 0.96);
}

.table-wrap {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

th {
  background: #f8faf5;
}

.pill,
.tag {
  border: 1px solid rgba(24, 34, 29, 0.05);
}

.column {
  background: rgba(238, 242, 234, 0.86);
}

.lead-card {
  background: rgba(255, 255, 255, 0.94);
}

.avatar {
  background: linear-gradient(135deg, #ddecdf, #f4e7be);
}

.event i {
  background: linear-gradient(135deg, #eef4ed, #f7efd7);
}

.segmented {
  background: white;
  box-shadow: 0 1px 0 rgba(24, 34, 29, 0.04);
}

.segmented button.active {
  background: linear-gradient(135deg, var(--brand), #1b8263);
}

.modal-box {
  padding: 20px;
  background: rgba(255, 255, 255, 0.96);
}

.auth-card {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

@media (max-width: 1000px) {
  .shell {
    grid-template-columns: 1fr;
  }

  .topbar {
    top: 56px;
    padding: 16px;
  }

  .content {
    padding: 16px;
  }

  .activity-layout {
    grid-template-columns: 1fr;
  }

  .content-workspace,
  .team-workspace {
    width: 100%;
  }
}

@media (max-width: 620px) {
  .topbar {
    padding: 14px;
  }

  .topbar h1 {
    font-size: 22px;
  }

  .content {
    padding: 12px;
    gap: 12px;
  }

  .panel,
  .card {
    padding: 14px;
  }

  .metric strong {
    font-size: 24px;
  }
}
