/* Header / footer aplikasi — tema terang & bersih */
:root {
  --nav-bg: #ffffff;
  --nav-border: #e2e8f0;
  --nav-text: #0f172a;
  --nav-muted: #64748b;
  --accent: #2563eb;
  --page-bg: #f1f5f9;
  --surface: #ffffff;
  --surface-muted: #f8fafc;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

html, body {
  margin: 0;
  min-height: 100%;
  font-family: system-ui, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  background: var(--page-bg);
  color: #0f172a;
  -webkit-font-smoothing: antialiased;
}

body.has-app-nav {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.app-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: nowrap;
  padding: 0.75rem 1.25rem;
  padding-left: max(1.25rem, env(safe-area-inset-left));
  padding-right: max(1.25rem, env(safe-area-inset-right));
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  border-bottom: 1px solid var(--nav-border);
  box-shadow:
    0 10px 30px rgba(15, 23, 42, 0.04),
    0 1px 0 rgba(15, 23, 42, 0.04);
  position: relative;
  z-index: 10050;
}

a.app-nav__brand {
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--nav-text);
  text-decoration: none;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

a.app-nav__brand:hover {
  color: var(--accent);
}

.app-nav__brand-mark {
  height: 36px;
  width: auto;
  max-width: min(200px, 42vw);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  box-sizing: border-box;
}

.app-nav__brand-mark--fallback {
  width: 36px;
  min-width: 36px;
  max-width: 36px;
  height: 36px;
  background: radial-gradient(circle at 30% 20%, #bfdbfe 0%, #2563eb 55%, #1d4ed8 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.35),
    0 4px 12px rgba(37, 99, 235, 0.25);
  color: #ffffff;
}

.app-nav__brand-img {
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
  display: block;
}

.app-nav__brand-mark-tp {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
}

.app-nav__toggle {
  display: none;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: 1px solid var(--nav-border);
  border-radius: 10px;
  background: var(--surface);
  cursor: pointer;
  box-sizing: border-box;
}

/* User request: sembunyikan tombol kotak di samping logo */
.app-nav__toggle {
  display: none !important;
}

.app-nav__toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.app-nav__toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--nav-text);
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}

.app-nav__toggle-bar + .app-nav__toggle-bar {
  margin-top: 5px;
}

.app-nav.is-open .app-nav__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.app-nav.is-open .app-nav__toggle-bar:nth-child(2) {
  opacity: 0;
}

.app-nav.is-open .app-nav__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.app-nav__panel {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-width: 0;
}

.app-nav__links {
  display: flex;
  gap: 0.35rem;
  flex: 1;
  flex-wrap: wrap;
  min-width: 0;
}

/* Spesifisitas di atas Bootstrap Reboot (link biru + underline) */
header.app-nav .app-nav__links > a {
  color: var(--nav-muted);
  text-decoration: none;
  padding: 0.42rem 0.75rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  transition: background 0.15s, color 0.15s, border-color 0.15s, box-shadow 0.15s;
  border: 1px solid transparent;
}

header.app-nav .app-nav__links > a:hover {
  color: var(--nav-text);
  background: #f1f5f9;
  border-color: rgba(37, 99, 235, 0.25);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.08);
}

.app-nav__dropdown {
  position: relative;
}

.app-nav__dropdown summary {
  list-style: none;
  color: var(--nav-muted);
  text-decoration: none;
  padding: 0.42rem 0.75rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  user-select: none;
}

.app-nav__dropdown summary::-webkit-details-marker { display: none; }
.app-nav__dropdown summary::after { content: ' ▼'; font-size: 0.68em; opacity: 0.8; }
.app-nav__menu-ic {
  display: inline-flex;
  width: 1.05rem;
  justify-content: center;
  margin-right: 0.35rem;
  line-height: 1;
}

.app-nav__dropdown[open] summary,
.app-nav__dropdown summary:hover {
  color: var(--nav-text);
  background: #f1f5f9;
  border-color: rgba(37, 99, 235, 0.25);
}

.app-nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 250px;
  background: #f8f8fb;
  border: 1px solid var(--nav-border);
  border-radius: 16px;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.2);
  padding: 0.65rem;
  z-index: 10060;
}

.app-nav__dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  width: 14px;
  height: 14px;
  transform: translateX(-50%) rotate(45deg);
  background: #f8f8fb;
  border-left: 1px solid var(--nav-border);
  border-top: 1px solid var(--nav-border);
}

.app-nav__dropdown-menu a {
  display: flex;
  align-items: center;
  border-radius: 10px;
  padding: 0.58rem 0.72rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: #575776;
  border: none;
  background: transparent;
  box-shadow: none;
}

.app-nav__dropdown-menu a:hover {
  background: #ececf6;
  color: #2f2f49;
  border: none;
  box-shadow: none;
}

.app-nav__user {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
}

.app-nav__who {
  color: var(--nav-muted);
}

.role-tag {
  display: inline-block;
  margin-left: 0.35rem;
  padding: 0.15rem 0.45rem;
  border-radius: 6px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.role-tag.role-admin { background: #fee2e2; color: #b91c1c; }
.role-tag.role-cs { background: #dbeafe; color: #1d4ed8; }
.role-tag.role-karyawan { background: #dcfce7; color: #15803d; }

.btn-nav {
  color: var(--nav-text);
  text-decoration: none;
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--nav-border);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  background: var(--surface);
  transition: border-color 0.15s, color 0.15s;
}

.btn-nav:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.app-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.app-body > #app {
  flex: 1;
  min-height: 0;
}

/* Beranda: isi utama harus tampil (tanpa #app grid peta) */
.app-body > .dash-wrap {
  flex: 1 0 auto;
  width: 100%;
  min-height: min(60vh, 720px);
}

.app-footer {
  padding: 0.65rem max(1.25rem, env(safe-area-inset-right)) max(0.65rem, env(safe-area-inset-bottom)) max(1.25rem, env(safe-area-inset-left));
  font-size: 0.75rem;
  color: #64748b;
  border-top: 1px solid var(--nav-border);
  background: #ffffff;
}

/* Halaman login */
.login-page {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(1rem, env(safe-area-inset-top)) max(1rem, env(safe-area-inset-right)) max(1rem, env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-left));
  background: linear-gradient(160deg, #e2e8f0 0%, #f8fafc 45%, #f1f5f9 100%);
}

.login-card {
  width: 100%;
  max-width: 400px;
  background: var(--surface);
  border: 1px solid var(--nav-border);
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.06), 0 10px 24px -4px rgba(15, 23, 42, 0.08);
}

.login-card h1 {
  margin: 0 0 0.25rem;
  font-size: 1.35rem;
  font-weight: 700;
  color: #0f172a;
}

.login-card p.sub {
  margin: 0 0 1.25rem;
  font-size: 0.875rem;
  color: #64748b;
}

.login-card label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #475569;
  margin-bottom: 0.35rem;
}

.login-card input {
  width: 100%;
  padding: 0.55rem 0.65rem;
  margin-bottom: 0.85rem;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  color: #0f172a;
  font-size: 0.9rem;
  box-sizing: border-box;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.login-card input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.login-card button {
  width: 100%;
  padding: 0.6rem;
  border: none;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  margin-top: 0.25rem;
  transition: background 0.15s;
}

.login-card button:hover {
  background: #1d4ed8;
}

.login-card .err {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
  padding: 0.55rem 0.7rem;
  border-radius: 8px;
  font-size: 0.85rem;
  margin-bottom: 0.85rem;
}

.login-hint {
  margin-top: 1.1rem;
  font-size: 0.72rem;
  color: #94a3b8;
  line-height: 1.45;
}

/* Halaman pengguna */
.users-wrap {
  padding: 1.25rem 1.5rem 2rem;
  max-width: 960px;
}

.users-wrap h1 {
  font-size: 1.25rem;
  margin: 0 0 1.25rem;
  font-weight: 700;
  color: #0f172a;
}

.users-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 800px) {
  .users-grid { grid-template-columns: 1fr; }
}

.users-form {
  background: var(--surface);
  border: 1px solid var(--nav-border);
  border-radius: 12px;
  padding: 1.15rem;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.users-form h2 {
  font-size: 1rem;
  margin: 0 0 0.85rem;
  font-weight: 600;
  color: #0f172a;
}

.users-form input, .users-form select {
  width: 100%;
  padding: 0.5rem 0.6rem;
  margin-bottom: 0.55rem;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  color: #0f172a;
  font-size: 0.875rem;
  box-sizing: border-box;
}

.users-form input:focus, .users-form select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.users-form button {
  margin-top: 0.35rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.users-form button:hover {
  background: #1d4ed8;
}

.users-table-wrap {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  background: var(--surface);
  border: 1px solid var(--nav-border);
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.users-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.users-table th, .users-table td {
  padding: 0.6rem 0.85rem;
  text-align: left;
  border-bottom: 1px solid #e2e8f0;
}

.users-table th {
  color: #64748b;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.users-table tr:last-child td { border-bottom: none; }

.users-table button.small {
  padding: 0.3rem 0.55rem;
  font-size: 0.75rem;
  border-radius: 6px;
  border: 1px solid #fecaca;
  background: #fff;
  color: #dc2626;
  cursor: pointer;
}

.users-table button.small:hover {
  background: #fef2f2;
}

/* Audit log */
.audit-wrap {
  max-width: 1200px;
}
.audit-filter {
  margin-bottom: 1rem;
}
.audit-filter__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
}
.audit-filter__actions {
  display: flex;
  align-items: flex-end;
  gap: 0.45rem;
}
.audit-filter .btn-nav {
  margin-bottom: 0.55rem;
}
.audit-table td {
  vertical-align: top;
}
.audit-main {
  font-weight: 600;
  color: #334155;
}
.audit-detail {
  margin-top: 0.35rem;
}
.audit-detail summary {
  cursor: pointer;
  color: #475569;
  font-size: 0.78rem;
  user-select: none;
}
.audit-detail__box {
  margin-top: 0.25rem;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  border-radius: 8px;
  padding: 0.35rem 0.45rem;
}
.audit-detail__row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 0.45rem;
  padding: 0.12rem 0;
}
.audit-detail__k {
  color: #64748b;
  font-size: 0.74rem;
  font-weight: 600;
}
.audit-detail__v {
  color: #0f172a;
  font-size: 0.78rem;
  word-break: break-word;
}
.audit-ua {
  display: block;
  margin-top: 0.2rem;
  color: #94a3b8;
  font-size: 0.7rem;
  line-height: 1.35;
  max-width: 320px;
  word-break: break-word;
}
@media (max-width: 1024px) {
  .audit-filter__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .audit-filter__grid {
    grid-template-columns: 1fr;
  }
  .audit-filter__actions {
    align-items: center;
  }
}

.msg-ok {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
  padding: 0.55rem 0.85rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

.msg-err {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
  padding: 0.55rem 0.85rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

/* Navigasi — layar sempit (HP): kolom rapi, menu horizontal scroll */
@media (max-width: 640px) {
  .app-nav {
    flex-direction: column;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 0.55rem;
    padding: 0.55rem 0.75rem;
    padding-left: max(0.75rem, env(safe-area-inset-left));
    padding-right: max(0.75rem, env(safe-area-inset-right));
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  }

  a.app-nav__brand {
    flex-shrink: 0;
    align-self: flex-start;
  }

  .app-nav__brand-mark {
    height: 30px;
    max-width: min(200px, 70vw);
    border-radius: 10px;
  }

  .app-nav__panel {
    position: relative;
    display: flex;
    flex: none;
    width: 100%;
    min-width: 0;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.5rem;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    overflow: visible;
  }

  /* Satu baris scroll: Beranda, Peta, Cek, Data — tidak turun zig-zag */
  .app-nav__links {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
    flex: none;
    min-width: 0;
    overflow-x: visible;
    overflow-y: visible;
    padding: 0.15rem 0 0.35rem;
    -webkit-overflow-scrolling: auto;
    scrollbar-width: auto;
  }

  header.app-nav .app-nav__links > a {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 0.45rem 0.65rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
  }

  header.app-nav .app-nav__links > a:hover {
    background: #eff6ff;
    border-color: rgba(37, 99, 235, 0.35);
  }

  .app-nav__dropdown {
    position: relative;
    width: auto;
    flex: 0 0 auto;
    overflow: visible;
  }

  .app-nav__dropdown summary {
    display: inline-block;
    white-space: nowrap;
    padding: 0.45rem 0.65rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
  }
  .app-nav__dropdown summary .app-nav__menu-ic {
    width: 1rem;
    margin-right: 0.3rem;
  }

  .app-nav__dropdown-menu {
    left: 0;
    right: auto;
    transform: none;
    min-width: min(280px, calc(100vw - 2rem));
    top: calc(100% + 8px);
    z-index: 10120;
  }

  .app-nav__dropdown-menu::before {
    left: 1.25rem;
    transform: rotate(45deg);
  }

  .app-nav__toggle {
    display: none !important;
  }

  .app-nav__toggle-bar {
    background: #ffffff;
  }

  /* User + Keluar satu baris, tombol tidak full-width */
  .app-nav__user {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.45rem 0.75rem;
    padding-top: 0.45rem;
    margin-top: 0.1rem;
    border-top: 1px solid #e8eef5;
  }

  .app-nav__who {
    flex: 1 1 auto;
    min-width: 0;
    line-height: 1.35;
    font-size: 0.8rem;
  }

  .app-nav .btn-nav {
    flex: 0 0 auto;
    width: auto;
    min-height: 38px;
    padding: 0.35rem 0.85rem;
    font-size: 0.8rem;
  }

  .role-tag {
    font-size: 0.68rem;
    padding: 0.12rem 0.42rem;
  }
}

/* Reset header untuk desktop */
@media (min-width: 641px) {
  .app-nav__toggle { display: none !important; }

  .app-nav__panel {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    width: auto !important;
    display: flex !important;
    flex-direction: row !important;
    flex: 1;
    align-items: center !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    gap: 1rem;
    pointer-events: auto !important;
  }

  .app-nav__links {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    white-space: nowrap;
    align-items: flex-start !important;
  }
  header.app-nav .app-nav__links > a { white-space: nowrap; }

  .app-nav__user {
    flex-direction: row !important;
    align-items: center !important;
    gap: 0.75rem !important;
    align-self: flex-start !important;
    margin-top: 0 !important;
    border-top: none !important;
    padding-top: 0 !important;
  }
}

/* Halaman konten umum */
@media (max-width: 640px) {
  .users-wrap {
    padding: 1rem max(0.85rem, env(safe-area-inset-right)) 1.5rem max(0.85rem, env(safe-area-inset-left));
  }

  .users-wrap h1 {
    font-size: 1.1rem;
  }

  /* Hindari zoom otomatis iOS pada fokus input */
  .users-form input,
  .users-form select,
  .login-card input {
    font-size: 16px;
  }
}

/* Beranda — ringkasan (tanpa peta) */
.dash-wrap {
  max-width: 1040px;
  margin: 0 auto;
  padding: 1.25rem max(1rem, env(safe-area-inset-right)) 2rem max(1rem, env(safe-area-inset-left));
  box-sizing: border-box;
}
.dash-hero {
  margin-bottom: 1.5rem;
}
.dash-title {
  margin: 0 0 0.35rem;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--nav-text);
}
.dash-lead {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  color: var(--nav-muted);
  line-height: 1.5;
  max-width: 42rem;
}
.dash-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}
.dash-btn-peta {
  font-weight: 600;
}
.dash-loading {
  margin: 0 0 1rem;
  font-size: 0.88rem;
}
.dash-kpi-row {
  margin-bottom: 0.25rem;
}
.dash-kpi {
  background: var(--surface);
  border: 1px solid var(--nav-border);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  box-shadow: var(--shadow-sm, 0 1px 2px rgba(15, 23, 42, 0.04));
}
.dash-kpi__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--nav-muted);
  margin-bottom: 0.35rem;
}
.dash-kpi__val {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--nav-text);
  line-height: 1.15;
}
.dash-kpi__val--sm {
  font-size: 1rem;
  font-weight: 700;
  text-transform: capitalize;
}
.dash-card {
  background: var(--surface);
  border: 1px solid var(--nav-border);
  border-radius: 12px;
  padding: 1rem 1.1rem;
  height: 100%;
  box-shadow: var(--shadow-sm, 0 1px 2px rgba(15, 23, 42, 0.04));
}
.dash-card__title {
  margin: 0 0 0.75rem;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #64748b;
}
.dash-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.dash-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.88rem;
  color: #334155;
}
.dash-list li:last-child {
  border-bottom: none;
}
.dash-list strong {
  font-weight: 700;
  color: #0f172a;
  font-variant-numeric: tabular-nums;
}
.dash-quick {
  padding-top: 0.25rem;
}
.dash-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}
.dash-quick-links a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}
.dash-quick-links a:hover {
  text-decoration: underline;
}
@media (max-width: 640px) {
  .dash-title {
    font-size: 1.25rem;
  }
  .dash-kpi__val {
    font-size: 1.15rem;
  }
}
