:root {
  --bg: #050505;
  --panel: #111111;
  --panel-2: #181818;
  --line: #282828;
  --text: #ffffff;
  --muted: #b6b6b6;
  --muted-2: #777777;
  --orange: #ff7a00;
  --orange-2: #ff8c00;
  --green: #22c55e;
  --red: #ef4444;
  --yellow: #f59e0b;
  --shadow: 0 18px 55px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  max-width: 100%;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top right, rgba(255, 122, 0, 0.14), transparent 31rem),
    linear-gradient(180deg, #090909 0%, #050505 48%, #000 100%);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

button {
  cursor: pointer;
}

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

.boot {
  display: grid;
  min-height: 100vh;
  place-items: center;
  align-content: center;
  gap: 12px;
  padding: 24px;
  text-align: center;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 10px;
  background: var(--orange);
  box-shadow: 0 0 0 1px rgba(255, 122, 0, 0.45), 0 16px 40px rgba(255, 122, 0, 0.18);
}

.brand-mark::before {
  content: "";
  width: 27px;
  height: 37px;
  background: #050505;
  clip-path: polygon(58% 0, 8% 56%, 42% 56%, 28% 100%, 92% 38%, 55% 38%);
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.35)) drop-shadow(0 0 7px rgba(0, 0, 0, 0.42));
}

.shell {
  display: grid;
  min-height: 100vh;
  max-width: 100vw;
  overflow-x: hidden;
  grid-template-columns: 240px minmax(0, 1fr);
}

.sidebar {
  position: sticky;
  top: 0;
  display: flex;
  height: 100vh;
  flex-direction: column;
  border-right: 1px solid var(--line);
  background: #000;
}

.sidebar-head {
  display: flex;
  min-height: 74px;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding: 14px;
}

.brand-title {
  line-height: 1;
}

.brand-title strong {
  display: block;
  letter-spacing: 0;
}

.brand-title span {
  display: block;
  margin-top: 4px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
}

.profile-box {
  border-bottom: 1px solid var(--line);
  padding: 12px 14px;
}

.profile-box strong,
.profile-box span {
  display: block;
}

.profile-box span {
  margin-top: 4px;
  color: var(--muted-2);
  font-size: 13px;
}

.nav {
  display: grid;
  gap: 4px;
  overflow-y: auto;
  padding: 10px;
}

.nav button {
  display: flex;
  min-height: 38px;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #d7d7d7;
  padding: 9px 10px;
  text-align: left;
  font-size: 13px;
  font-weight: 750;
}

.nav button:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.nav button.active {
  background: var(--orange);
  color: #000;
}

.sidebar-foot {
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding: 10px;
}

.main {
  min-width: 0;
  max-width: 100%;
  overflow-x: hidden;
}

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

.topbar h1 {
  margin: 4px 0 0;
  font-size: 23px;
  line-height: 1.1;
}

.eyebrow {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.top-subtitle {
  margin: 5px 0 0;
  color: var(--muted-2);
  font-size: 14px;
}

.content {
  width: 100%;
  margin: 0;
  max-width: none;
  overflow-x: hidden;
  padding: 18px 18px 34px;
}

.auth-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
}

.auth-card {
  width: min(100%, 560px);
}

.auth-card.wide {
  width: min(100%, 760px);
}

.card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.card-pad {
  padding: 18px;
}

.card-title {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding: 14px 18px;
}

.card-title h2 {
  margin: 0;
  font-size: 17px;
}

.grid {
  display: grid;
  min-width: 0;
  max-width: 100%;
  gap: 10px;
}

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

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

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

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

.metric-section {
  display: grid;
  min-width: 0;
  gap: 9px;
}

.metric-section h3 {
  margin: 2px 0 0;
  color: #f3f3f3;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.metric {
  min-height: 92px;
  overflow: hidden;
  padding: 11px 12px;
  min-width: 0;
}

.metric span {
  display: block;
  overflow: hidden;
  color: var(--muted-2);
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 700;
}

.metric strong {
  display: block;
  margin-top: 7px;
  color: #fff;
  font-size: 21px;
  line-height: 1.1;
  overflow: hidden;
  text-overflow: ellipsis;
}

.metric small {
  display: block;
  overflow: hidden;
  margin-top: 8px;
  color: var(--muted-2);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.metric.red {
  border-color: rgba(239, 68, 68, 0.5);
  background: linear-gradient(180deg, rgba(239, 68, 68, 0.14), rgba(17, 17, 17, 0.98));
}

.metric.red strong,
.loss-text {
  color: #fca5a5;
}

.profit-text {
  color: #86efac;
}

.metric.red span,
.metric.red small {
  color: #fecaca;
}

.metric.green {
  border-color: rgba(34, 197, 94, 0.45);
  background: linear-gradient(180deg, rgba(34, 197, 94, 0.13), rgba(17, 17, 17, 0.98));
}

.metric.green strong {
  color: #86efac;
}

.metric.green span,
.metric.green small {
  color: #bbf7d0;
}

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

.grid > .details-panel {
  grid-column: 1 / -1;
}

.details-grid .details-panel {
  grid-column: auto;
}

.details-panel {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(17, 17, 17, 0.86);
}

.details-panel summary {
  cursor: pointer;
  list-style: none;
  padding: 13px 15px;
  color: #f5f5f5;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.details-panel summary::-webkit-details-marker {
  display: none;
}

.details-panel summary::after {
  float: right;
  color: var(--accent);
  content: "+";
  font-size: 18px;
  line-height: 1;
}

.details-panel[open] summary::after {
  content: "-";
}

.compact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  border-top: 1px solid var(--line);
  padding: 12px;
}

.compact-stat,
.compact-stack span {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
  padding: 10px;
}

.compact-stat span,
.compact-stack span {
  display: block;
  overflow: hidden;
  color: var(--muted-2);
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 750;
}

.compact-stat strong,
.compact-stack strong {
  display: block;
  margin-top: 5px;
  color: #fff;
  font-size: 15px;
  line-height: 1.15;
}

.compact-stat small {
  display: block;
  overflow: hidden;
  margin-top: 5px;
  color: var(--muted-2);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.compact-stat.red strong,
.compact-stack .loss-text {
  color: #fca5a5;
}

.compact-stat.green strong,
.compact-stack .profit-text {
  color: #86efac;
}

.compact-stack {
  display: grid;
  min-width: 210px;
  gap: 7px;
}

.inline-details {
  width: 100%;
  min-width: 140px;
}

.inline-details summary {
  cursor: pointer;
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
}

.inline-details .compact-stack {
  margin-top: 8px;
}

.actions-cell {
  display: flex;
  min-width: 260px;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.field-group {
  display: grid;
  gap: 6px;
}

.field-group label {
  color: #d8d8d8;
  font-size: 14px;
  font-weight: 750;
}

.filter-bar {
  display: grid;
  grid-template-columns: minmax(160px, 240px) minmax(220px, 1fr) auto;
  min-width: 0;
  align-items: end;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(17, 17, 17, 0.78);
  padding: 12px;
}

.filter-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.report-filter-bar {
  grid-template-columns: minmax(150px, 190px) minmax(150px, 190px) minmax(220px, 1fr) auto auto;
}

.dashboard-filter-bar {
  grid-template-columns: minmax(160px, 190px) minmax(150px, 180px) minmax(150px, 180px) minmax(220px, 1fr) auto;
}

.field,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: 0;
  background: rgba(0, 0, 0, 0.42);
  color: #fff;
  padding: 12px 13px;
}

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

.field:focus,
select:focus,
textarea:focus {
  border-color: rgba(255, 122, 0, 0.8);
  box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.13);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-2);
  color: #fff;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 850;
}

.btn:hover {
  border-color: rgba(255, 122, 0, 0.62);
  color: var(--orange);
}

.btn:disabled {
  cursor: wait;
  opacity: 0.58;
}

.btn.primary {
  border-color: transparent;
  background: var(--orange);
  color: #000;
}

.btn.primary:hover {
  background: var(--orange-2);
  color: #000;
}

.btn.danger {
  border-color: rgba(239, 68, 68, 0.45);
  background: rgba(239, 68, 68, 0.12);
  color: #fecaca;
}

.btn.success {
  border-color: rgba(34, 197, 94, 0.45);
  background: rgba(34, 197, 94, 0.12);
  color: #bbf7d0;
}

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

.hidden {
  display: none !important;
}

.checkline {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  color: #f3f3f3;
  padding: 12px 14px;
  font-weight: 850;
}

.checkline input {
  width: 18px;
  height: 18px;
  accent-color: var(--orange);
}

.alert {
  border: 1px solid rgba(245, 158, 11, 0.4);
  border-radius: 8px;
  background: rgba(245, 158, 11, 0.11);
  color: #fde68a;
  padding: 14px;
  font-weight: 700;
}

.alert.red {
  border-color: rgba(239, 68, 68, 0.45);
  background: rgba(239, 68, 68, 0.12);
  color: #fecaca;
}

.alert.green {
  border-color: rgba(34, 197, 94, 0.45);
  background: rgba(34, 197, 94, 0.12);
  color: #bbf7d0;
}

.badge {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  padding: 4px 9px;
  font-size: 12px;
  font-weight: 850;
  white-space: nowrap;
}

.badge.green {
  border-color: rgba(34, 197, 94, 0.35);
  background: rgba(34, 197, 94, 0.12);
  color: #bbf7d0;
}

.badge.red {
  border-color: rgba(239, 68, 68, 0.35);
  background: rgba(239, 68, 68, 0.12);
  color: #fecaca;
}

.badge.orange {
  border-color: rgba(255, 122, 0, 0.4);
  background: rgba(255, 122, 0, 0.12);
  color: #fed7aa;
}

.table-wrap {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  -webkit-overflow-scrolling: touch;
}

.mobile-report-list {
  display: none;
}

.report-table-wrap {
  overflow: visible;
  border: 0;
}

.report-table-wrap table {
  display: none;
}

.report-table-wrap .mobile-report-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 10px;
}

.mobile-report-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 11px;
}

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

.mobile-report-head strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 15px;
}

.mobile-report-head span {
  flex: 0 0 auto;
  color: var(--muted-2);
  font-size: 12px;
  white-space: nowrap;
}

.mobile-report-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

.mobile-report-stats span {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted-2);
  padding: 7px;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 11px;
}

.mobile-report-stats strong {
  display: block;
  overflow: hidden;
  color: #fff;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
}

.mobile-report-stats strong.profit-text {
  color: #86efac;
}

.mobile-report-stats strong.loss-text {
  color: #fca5a5;
}

.mobile-report-badges,
.mobile-report-actions {
  margin-top: 9px;
}

.mobile-report-actions .btn {
  min-height: 38px;
  padding: 7px 9px;
  font-size: 12px;
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 10px;
}

.payment-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(24, 24, 24, 0.96), rgba(12, 12, 12, 0.98));
  padding: 12px;
}

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

.expense-manager {
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
  padding: 12px;
}

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

.expense-manager-head strong,
.expense-manager-head span {
  display: block;
}

.expense-manager-head span {
  margin-top: 3px;
  color: var(--muted-2);
  font-size: 12px;
}

.expense-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 10px;
}

.expense-card {
  display: grid;
  min-width: 0;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 10px;
}

.expense-check {
  width: 100%;
  justify-content: flex-start;
}

.loss-allocation-grid .field-group:last-child {
  border: 1px solid rgba(239, 68, 68, 0.28);
  border-radius: 8px;
  background: rgba(239, 68, 68, 0.06);
  padding: 10px;
}

table {
  width: 100%;
  min-width: 1120px;
  border-collapse: collapse;
  font-size: 13px;
}

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 10px;
  text-align: left;
  white-space: nowrap;
}

th {
  background: rgba(0, 0, 0, 0.34);
  color: #cfcfcf;
  font-size: 12px;
  text-transform: uppercase;
}

td {
  color: #e5e5e5;
}

tr:hover td {
  background: rgba(255, 255, 255, 0.025);
}

.report-text {
  min-height: 330px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

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

.bar-row {
  display: grid;
  grid-template-columns: 110px 1fr 80px;
  align-items: center;
  gap: 10px;
  color: #d9d9d9;
  font-size: 13px;
}

.bar-track {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: #252525;
}

.bar-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--green));
}

.mobile-menu {
  display: none;
}

.spacer {
  height: 16px;
}

.confirm-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.72);
  padding: 18px;
}

.confirm-dialog {
  width: min(100%, 520px);
  border: 1px solid rgba(239, 68, 68, 0.5);
  border-radius: 8px;
  background: #101010;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  padding: 20px;
}

.confirm-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: rgba(239, 68, 68, 0.16);
  color: #fecaca;
  font-size: 24px;
  font-weight: 950;
}

.confirm-dialog h2 {
  margin: 14px 0 8px;
  font-size: 22px;
}

.confirm-dialog p {
  margin: 0;
  color: var(--muted);
}

.confirm-summary {
  display: grid;
  gap: 8px;
  margin: 16px 0;
  border: 1px solid rgba(239, 68, 68, 0.35);
  border-radius: 8px;
  background: rgba(239, 68, 68, 0.1);
  color: #fecaca;
  padding: 12px;
}

.confirm-actions {
  justify-content: flex-end;
}

@media (max-width: 1500px) {
  .grid-5 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

@media (max-width: 1120px) {
  .grid-5,
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

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

  .filter-actions {
    grid-column: 1 / -1;
  }

  .metric {
    min-height: 112px;
    padding: 14px;
  }

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

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

  .sidebar {
    position: fixed;
    z-index: 50;
    width: 290px;
    transform: translateX(-105%);
    transition: transform 0.2s ease;
  }

  body.menu-open .sidebar {
    transform: translateX(0);
  }

  .mobile-menu {
    display: inline-flex;
  }

  .topbar {
    padding: 14px;
  }

  .content {
    padding: 16px 14px 34px;
  }

  .topbar {
    align-items: flex-start;
  }

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

  .card-pad {
    padding: 14px;
  }

  .metric {
    min-height: 104px;
  }

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

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

  .actions-cell {
    min-width: 0;
  }

  .field,
  select,
  textarea,
  .btn {
    min-height: 54px;
    font-size: 16px;
  }

  .form-actions {
    position: sticky;
    bottom: 0;
    z-index: 15;
    margin: 0 -14px -14px;
    border-top: 1px solid var(--line);
    background: rgba(5, 5, 5, 0.94);
    padding: 12px 14px;
    backdrop-filter: blur(12px);
  }

  .form-actions .btn {
    flex: 1 1 100%;
  }

  #admin-costs-form .btn-row .btn {
    width: 100%;
  }

  .btn-row:not(.confirm-actions):not(.form-actions) .btn,
  .btn-row:not(.confirm-actions):not(.form-actions) a.btn {
    flex: 1 1 auto;
  }

  .confirm-dialog {
    align-self: end;
    max-height: calc(100vh - 28px);
    overflow-y: auto;
  }

  .confirm-actions .btn {
    width: 100%;
  }

  .filter-bar {
    grid-template-columns: 1fr;
  }

  .report-filter-bar {
    grid-template-columns: 1fr;
  }

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

  .filter-actions .btn {
    width: 100%;
  }

  .expense-manager-head {
    align-items: stretch;
    flex-direction: column;
  }

  .expense-manager-head .btn-row .btn {
    flex: 1 1 100%;
  }

  .report-table-wrap {
    overflow: visible;
    border: 0;
  }

  .report-table-wrap table {
    display: none;
  }

  .report-table-wrap .mobile-report-list {
    display: grid;
    gap: 12px;
  }

  .mobile-report-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel);
    padding: 12px;
  }

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

  .mobile-report-head strong {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 16px;
  }

  .mobile-report-head span {
    color: var(--muted-2);
    font-size: 13px;
    white-space: nowrap;
  }

  .mobile-report-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .mobile-report-stats span {
    min-width: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.035);
    color: var(--muted-2);
    padding: 8px;
    font-size: 12px;
  }

  .mobile-report-stats strong {
    display: block;
    overflow: hidden;
    color: #fff;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
  }

  .mobile-report-badges,
  .mobile-report-actions {
    margin-top: 10px;
  }

  .mobile-report-actions .btn {
    min-height: 44px;
    font-size: 13px;
    padding: 8px 10px;
  }

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