:root {
  --bg: #f5f7fb;
  --panel: #ffffff;
  --panel-soft: #f8fafc;
  --ink: #101827;
  --muted: #637083;
  --line: #dfe6f1;
  --nav: #0a1323;
  --nav-2: #0f1c31;
  --blue: #1f66e5;
  --blue-2: #0e4ed0;
  --teal: #1aa99a;
  --green: #0f9f6e;
  --amber: #d99108;
  --red: #d64045;
  --violet: #7357d8;
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  --radius: 8px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  font-family: var(--font);
  font-size: 14px;
  letter-spacing: 0;
  background: radial-gradient(circle at top right, rgba(31, 102, 229, 0.08), transparent 34rem), var(--bg);
}

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

button {
  cursor: pointer;
}

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

.sidebar {
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  height: 100vh;
  padding: 16px 12px;
  color: #f8fbff;
  background: linear-gradient(180deg, var(--nav) 0%, #07101e 100%);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.brand {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 10px;
  padding: 4px 8px 18px;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: linear-gradient(135deg, #1f66e5, #1aa99a);
}

.brand strong,
.sidebar-footer strong {
  display: block;
  font-size: 14px;
  line-height: 1.2;
}

.brand span,
.sidebar-footer span {
  display: block;
  margin-top: 3px;
  color: #aab7c9;
  font-size: 11px;
}

.nav-group {
  display: grid;
  gap: 3px;
  overflow-y: auto;
  padding-right: 2px;
}

.nav-item {
  display: grid;
  grid-template-columns: 19px 1fr;
  align-items: center;
  gap: 10px;
  min-height: 37px;
  padding: 0 10px;
  color: #d7e1ef;
  text-align: left;
  background: transparent;
  border: 0;
  border-radius: 7px;
}

.nav-item:hover {
  background: rgba(255, 255, 255, 0.07);
}

.nav-item.active {
  color: #ffffff;
  background: linear-gradient(90deg, #1f66e5, #0e4ed0);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.nav-item svg,
.icon-btn svg,
.primary-btn svg,
.ghost-btn svg {
  width: 17px;
  height: 17px;
  stroke-width: 2;
}

.sidebar-footer {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding: 12px 8px 2px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.avatar {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #0a1323;
  font-weight: 800;
  border-radius: 50%;
  background: #ffffff;
}

.workspace {
  min-width: 0;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 66px;
  padding: 12px 22px;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.tenant-switcher,
.topbar-actions,
.page-actions,
.inline-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tenant-switcher label {
  display: grid;
  gap: 5px;
  color: var(--muted);
  font-size: 11px;
}

select,
input,
textarea {
  min-height: 36px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 7px;
  outline: none;
}

select:focus,
input:focus,
textarea:focus {
  border-color: rgba(31, 102, 229, 0.64);
  box-shadow: 0 0 0 3px rgba(31, 102, 229, 0.12);
}

.tenant-switcher select {
  min-width: 210px;
  padding: 0 34px 0 10px;
}

.searchbox {
  position: relative;
  display: flex;
  align-items: center;
  width: min(360px, 30vw);
}

.searchbox svg {
  position: absolute;
  left: 10px;
  width: 16px;
  height: 16px;
  color: var(--muted);
}

.searchbox input {
  width: 100%;
  padding: 0 12px 0 34px;
}

.icon-btn,
.ghost-btn,
.primary-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 36px;
  border-radius: 7px;
  border: 1px solid var(--line);
  background: #ffffff;
}

.icon-btn {
  width: 36px;
  color: #334155;
}

.ghost-btn {
  padding: 0 12px;
  color: #263244;
}

.primary-btn {
  min-width: 120px;
  padding: 0 14px;
  color: #ffffff;
  border-color: var(--blue-2);
  background: linear-gradient(180deg, var(--blue), var(--blue-2));
  box-shadow: 0 10px 22px rgba(31, 102, 229, 0.22);
}

.badge,
.badge-dot {
  position: absolute;
  top: -5px;
  right: -5px;
  display: grid;
  min-width: 18px;
  height: 18px;
  place-items: center;
  padding: 0 5px;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  border-radius: 99px;
  background: var(--red);
  border: 2px solid #ffffff;
}

.badge-dot {
  top: 6px;
  right: 7px;
  width: 8px;
  min-width: 8px;
  height: 8px;
  padding: 0;
  background: var(--green);
}

.page-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px 10px;
}

.eyebrow {
  margin: 0 0 5px;
  color: var(--blue-2);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 4px;
  font-size: 28px;
  line-height: 1.15;
}

h2 {
  margin-bottom: 10px;
  font-size: 19px;
  line-height: 1.25;
}

h3 {
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.3;
}

.page-head p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.content-grid {
  display: grid;
  gap: 14px;
  padding: 0 22px 24px;
}

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

.card,
.metric-card,
.module-card,
.spec-card,
.diagram-card,
.phone-frame,
.modal-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.metric-card {
  min-height: 104px;
  padding: 15px;
}

.metric-card span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.metric-card strong {
  display: block;
  margin: 10px 0 8px;
  font-size: 24px;
  line-height: 1;
}

.trend {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
}

.trend.good {
  color: var(--green);
}

.trend.bad {
  color: var(--red);
}

.span-2 {
  grid-column: span 2;
}

.span-3 {
  grid-column: span 3;
}

.span-4 {
  grid-column: span 4;
}

.span-5 {
  grid-column: span 5;
}

.span-6 {
  grid-column: span 6;
}

.span-7 {
  grid-column: span 7;
}

.span-8 {
  grid-column: span 8;
}

.span-12 {
  grid-column: span 12;
}

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

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

.card-head p,
.muted {
  color: var(--muted);
}

.chart-wrap {
  position: relative;
  height: 245px;
}

.chart-wrap svg {
  width: 100%;
  height: 100%;
}

.line-chart-grid {
  fill: none;
  stroke: #e8eef7;
  stroke-width: 1;
}

.line-chart-path {
  fill: none;
  stroke: var(--blue);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.donut-layout {
  display: grid;
  grid-template-columns: minmax(148px, 190px) 1fr;
  gap: 18px;
  align-items: center;
}

.donut {
  position: relative;
  width: 178px;
  height: 178px;
  border-radius: 50%;
  background: conic-gradient(var(--blue) 0 65%, #8dc9db 65% 89%, #e3e8f2 89% 100%);
}

.donut::after {
  content: "";
  position: absolute;
  inset: 36px;
  border-radius: 50%;
  background: #ffffff;
}

.donut-label {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 800;
}

.donut-label small {
  display: block;
  color: var(--muted);
  font-weight: 600;
}

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

.legend-row,
.alert-row,
.bank-row {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue);
}

.dot.teal {
  background: #8dc9db;
}

.dot.gray {
  background: #c9d2e1;
}

.dot.amber {
  background: var(--amber);
}

.dot.red {
  background: var(--red);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
}

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

.data-table th {
  color: #526174;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.data-table td {
  font-size: 13px;
}

.data-table.compact th,
.data-table.compact td,
.dense .data-table th,
.dense .data-table td {
  padding-top: 8px;
  padding-bottom: 8px;
}

.link-btn {
  padding: 0;
  color: var(--blue-2);
  font-weight: 700;
  background: transparent;
  border: 0;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 22px;
  padding: 0 9px;
  font-size: 11px;
  font-weight: 800;
  border-radius: 999px;
  border: 1px solid transparent;
}

.pill.green {
  color: #06724d;
  background: #dff8ec;
  border-color: #b9ebd2;
}

.pill.blue {
  color: #0e4ed0;
  background: #e7efff;
  border-color: #cbdcff;
}

.pill.amber {
  color: #8a5a00;
  background: #fff5db;
  border-color: #f3d99a;
}

.pill.red {
  color: #a1121b;
  background: #ffe7e9;
  border-color: #f7c8cc;
}

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

.alert-row {
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #ffffff;
}

.module-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.module-card {
  padding: 15px;
}

.module-card .card-head {
  margin-bottom: 8px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.mini-stat {
  min-height: 58px;
  padding: 10px;
  background: var(--panel-soft);
  border: 1px solid var(--line);
  border-radius: 7px;
}

.mini-stat span {
  display: block;
  color: var(--muted);
  font-size: 11px;
}

.mini-stat strong {
  display: block;
  margin-top: 6px;
  font-size: 16px;
}

.invoice-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 14px;
}

.tabs {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  margin-bottom: 13px;
  border-bottom: 1px solid var(--line);
}

.tab-btn {
  min-width: max-content;
  padding: 11px 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
}

.tab-btn.active {
  color: var(--blue-2);
  border-bottom-color: var(--blue);
}

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

.info-box {
  min-height: 116px;
  padding: 13px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 7px;
}

.info-box dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.info-box dd {
  margin: 4px 0 10px;
}

.xml-preview,
.code-block {
  overflow: auto;
  max-height: 620px;
  margin: 0;
  padding: 14px;
  color: #18345f;
  line-height: 1.55;
  background: #fbfdff;
  border: 1px solid var(--line);
  border-radius: 7px;
}

.code-block {
  color: #102033;
  font-size: 12px;
}

.flow-board {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(148px, 1fr));
  gap: 12px;
}

.flow-step {
  position: relative;
  min-height: 106px;
  padding: 14px;
  text-align: center;
  background: #ffffff;
  border: 1px solid #cdd9ee;
  border-radius: 7px;
}

.flow-step svg {
  width: 28px;
  height: 28px;
  color: var(--blue);
}

.flow-step strong {
  display: block;
  margin-top: 8px;
}

.flow-step span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.fiscal-workbench {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(480px, 1.25fr);
  gap: 14px;
  align-items: start;
}

.fiscal-flow-panel .flow-board {
  grid-template-columns: repeat(2, minmax(150px, 1fr));
}

.fiscal-flow-panel .flow-step {
  min-height: 92px;
}

.operation-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 10px;
  padding: 12px;
  margin-bottom: 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--panel-soft);
}

.operation-bar label {
  display: grid;
  gap: 5px;
  min-width: 160px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.operation-bar input,
.operation-bar select {
  width: 100%;
  min-height: 34px;
  padding: 0 10px;
}

.action-cell,
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.mini-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 28px;
  padding: 0 9px;
  color: #263244;
  font-size: 12px;
  font-weight: 800;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 7px;
}

.mini-btn.primary {
  color: #ffffff;
  border-color: var(--blue-2);
  background: var(--blue);
}

.mini-btn.danger {
  color: #a1121b;
  background: #fff3f4;
  border-color: #f5c2c7;
}

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

.activity-feed {
  display: grid;
  gap: 8px;
  max-height: 320px;
  overflow: auto;
}

.activity-item {
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #ffffff;
}

.activity-item strong {
  display: block;
  margin-bottom: 4px;
}

.activity-item span {
  color: var(--muted);
  font-size: 12px;
}

.diagram-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr 0.8fr 0.9fr;
  gap: 12px;
}

.diagram-card {
  min-height: 210px;
  padding: 14px;
}

.service-list {
  display: grid;
  gap: 8px;
}

.service-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 34px;
  padding: 0 10px;
  background: #f9fbff;
  border: 1px solid #cdd9ee;
  border-radius: 7px;
}

.service-chip span {
  color: var(--muted);
  font-size: 11px;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.spec-card {
  min-height: 224px;
  padding: 16px;
}

.spec-card ul {
  margin: 10px 0 0;
  padding-left: 18px;
  color: #334155;
}

.spec-card li {
  margin: 7px 0;
}

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

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

.country-card {
  min-height: 150px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #ffffff;
}

.country-card strong {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag {
  display: inline-flex;
  min-height: 22px;
  align-items: center;
  padding: 0 8px;
  color: #263244;
  font-size: 11px;
  font-weight: 800;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f7f9fc;
}

.mobile-row {
  display: grid;
  grid-template-columns: repeat(4, 190px);
  gap: 14px;
  overflow-x: auto;
  padding: 6px 0 8px;
}

.phone-frame {
  position: relative;
  width: 190px;
  height: 372px;
  padding: 12px;
  background: #0a0f19;
  border-radius: 28px;
}

.phone-screen {
  height: 100%;
  overflow: hidden;
  background: #f8fafc;
  border-radius: 20px;
}

.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  padding: 0 12px;
  color: #ffffff;
  background: #0f356a;
}

.phone-content {
  display: grid;
  gap: 10px;
  padding: 12px;
}

.phone-card {
  padding: 10px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 7px;
}

.phone-nav {
  display: flex;
  justify-content: space-around;
  margin-top: 6px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.phone-nav span {
  width: 18px;
  height: 18px;
  border: 1px solid #aebbd0;
  border-radius: 4px;
}

.bar-chart {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  height: 180px;
  gap: 18px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: linear-gradient(180deg, transparent, rgba(31, 102, 229, 0.05));
}

.bar {
  display: grid;
  align-items: end;
  justify-items: center;
  height: 100%;
  gap: 8px;
}

.bar i {
  display: block;
  width: 42px;
  min-height: 20px;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--blue), #75a8ff);
}

.bar:nth-child(2) i {
  background: linear-gradient(180deg, var(--violet), #a392ea);
}

.bar:nth-child(3) i {
  background: linear-gradient(180deg, var(--teal), #72cec3);
}

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

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(10, 19, 35, 0.45);
}

.modal-card {
  width: min(760px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: 18px;
}

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

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

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

.form-grid input,
.form-grid select {
  width: 100%;
  padding: 0 10px;
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 18px;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  max-width: min(420px, calc(100vw - 36px));
  padding: 12px 14px;
  color: #ffffff;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  background: #0f1c31;
  border-radius: 7px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.24);
  transition: 0.2s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.empty-state {
  min-height: 260px;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--muted);
  border: 1px dashed #cbd5e1;
  border-radius: var(--radius);
  background: #ffffff;
}

@media (max-width: 1260px) {
  .span-2,
  .span-3,
  .span-4 {
    grid-column: span 6;
  }

  .span-5,
  .span-6,
  .span-7,
  .span-8 {
    grid-column: span 12;
  }

  .module-strip,
  .spec-grid,
  .country-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .invoice-workspace,
  .two-col,
  .fiscal-workbench,
  .workbench-grid,
  .diagram-grid {
    grid-template-columns: 1fr;
  }
}

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

  .sidebar {
    position: static;
    height: auto;
    min-height: auto;
  }

  .nav-group {
    display: flex;
    overflow-x: auto;
    padding-bottom: 5px;
  }

  .nav-item {
    min-width: 160px;
  }

  .sidebar-footer {
    display: none;
  }

  .topbar,
  .page-head {
    align-items: stretch;
    flex-direction: column;
  }

  .tenant-switcher,
  .topbar-actions,
  .page-actions {
    flex-wrap: wrap;
  }

  .searchbox {
    width: 100%;
  }

  .tenant-switcher select {
    min-width: min(270px, calc(100vw - 48px));
  }

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

  .span-2,
  .span-3,
  .span-4,
  .span-5,
  .span-6,
  .span-7,
  .span-8,
  .span-12 {
    grid-column: span 6;
  }

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

@media (max-width: 640px) {
  body {
    font-size: 13px;
  }

  .content-grid,
  .page-head,
  .topbar {
    padding-left: 14px;
    padding-right: 14px;
  }

  h1 {
    font-size: 24px;
  }

  .dashboard-grid,
  .form-grid,
  .invoice-summary,
  .module-strip,
  .spec-grid,
  .country-grid,
  .flow-board {
    grid-template-columns: 1fr;
  }

  .span-2,
  .span-3,
  .span-4,
  .span-5,
  .span-6,
  .span-7,
  .span-8,
  .span-12 {
    grid-column: span 1;
  }

  .donut-layout {
    grid-template-columns: 1fr;
    justify-items: center;
  }

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

  .data-table {
    min-width: 680px;
  }

  .card {
    overflow-x: auto;
  }
}
