:root {
  color-scheme: light dark;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #0f172a;
  color: #f8fafc;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top, rgba(51, 65, 85, 0.6), transparent 60%),
    radial-gradient(circle at 20% 10%, rgba(56, 189, 248, 0.12), transparent 45%),
    radial-gradient(circle at 80% 0%, rgba(34, 211, 238, 0.10), transparent 50%),
    #0b1224;
  min-height: 100vh;
}

main.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

.page-shell {
  background: #0f172a;
  border: 1px solid #334155;
  border-top: none;
  border-radius: 0 0 18px 18px;
  margin-top: -1px;
  padding: 1.5rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.45);
}

.page-content {
  margin-top: 0;
}

.page-header {
  margin-bottom: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.page-header h1 {
  margin: 0;
  font-size: 2.5rem;
  letter-spacing: 0.04em;
}

.page-header-title {
  display: flex;
  align-items: center;
}

.page-header-logo {
  display: block;
  width: min(340px, 100%);
  height: auto;
}

.page-header p {
  margin-top: 0.5rem;
  color: rgba(248, 250, 252, 0.7);
}

.page-nav {
  margin-top: 0.9rem;
  display: flex;
  gap: 0.25rem;
  flex-wrap: wrap;
  align-items: flex-end;
  width: 100%;
  border-bottom: 1px solid #334155;
}

.page-nav-link {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.9rem;
  border-radius: 12px 12px 0 0;
  border: 1px solid #334155;
  border-bottom: none;
  background: #1b2a3d;
  color: #f8fafc;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: -1px;
}

.page-nav-link:hover {
  border-color: #475569;
  background: #162341;
}

.page-nav-link.is-active {
  background: #0f172a;
  border-color: #334155;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.panel {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 18px;
  padding: 1.5rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.45);
  margin-bottom: 1.5rem;
}

.panel-tight {
  padding: 1rem;
  position: relative;
  z-index: 50;
}

.panel-list {
  padding: 1rem;
  position: relative;
  z-index: 1;
}

.filter-bar {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.facet-input {
  position: relative;
}

.facet-input-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.65rem;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(15, 23, 42, 0.82);
}

.facet-input-icon {
  display: inline-flex;
  color: rgba(148, 163, 184, 0.85);
}

.facet-pills {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  flex: 1;
  min-width: 0;
  padding-right: 6.25rem;
}

.facet-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(148, 163, 184, 0.10);
  color: rgba(248, 250, 252, 0.92);
  cursor: pointer;
}

.facet-pill:hover {
  border-color: rgba(56, 189, 248, 0.35);
  background: rgba(56, 189, 248, 0.12);
}

.facet-pill-key {
  color: rgba(148, 163, 184, 0.95);
}

.facet-pill-x {
  color: rgba(248, 250, 252, 0.8);
}

.facet-input-field {
  flex: 1;
  min-width: 220px;
  padding: 0.5rem 0.35rem;
  border: none;
  background: transparent;
  color: #f8fafc;
  outline: none;
}

.facet-input-field::placeholder {
  color: rgba(148, 163, 184, 0.8);
}


.facet-input-actions {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.facet-loading {
  color: rgba(148, 163, 184, 0.85);
  padding: 0 0.25rem;
}

.facet-clear {
  padding: 0.32rem 0.55rem;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(148, 163, 184, 0.10);
  color: rgba(248, 250, 252, 0.9);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

.facet-clear:hover {
  border-color: rgba(56, 189, 248, 0.35);
  background: rgba(56, 189, 248, 0.12);
}

.facet-error {
  margin-top: 0.35rem;
  font-size: 0.85rem;
  color: rgba(248, 113, 113, 0.95);
}

.facet-suggestions {
  position: absolute;
  z-index: 9999;
  left: 0;
  right: 0;
  margin-top: 0.5rem;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(2, 6, 23, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.55);
  overflow: hidden;
}

.facet-suggestion {
  width: 100%;
  text-align: left;
  padding: 0.65rem 0.8rem;
  border: none;
  background: transparent;
  color: rgba(248, 250, 252, 0.92);
  cursor: pointer;
}

.facet-suggestion:hover,
.facet-suggestion.is-active {
  background: rgba(56, 189, 248, 0.14);
}

.pilot-suggestions {
  position: absolute;
  z-index: 9999;
  left: 0;
  right: 0;
  margin-top: 0.5rem;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(2, 6, 23, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.55);
  overflow: hidden;
}

.pilot-suggestions-item {
  width: 100%;
  text-align: left;
  padding: 0.65rem 0.8rem;
  border: none;
  background: transparent;
  color: rgba(248, 250, 252, 0.92);
  cursor: pointer;
}

.pilot-suggestions-item.is-disabled {
  cursor: default;
  color: rgba(148, 163, 184, 0.85);
}

.pilot-suggestions-item:hover,
.pilot-suggestions-item.is-active {
  background: rgba(56, 189, 248, 0.14);
}

.pilot-suggestions-name {
  font-weight: 650;
}

.filter-row {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.filter-search {
  flex: 1;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  padding: 0.55rem 0.65rem;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(15, 23, 42, 0.82);
}

.filter-search-icon {
  display: inline-flex;
  color: rgba(148, 163, 184, 0.85);
}

.filter-search input {
  flex: 1;
  min-width: 140px;
  padding: 0.55rem 0.6rem;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.20);
  background: rgba(2, 6, 23, 0.25);
  color: #f8fafc;
}

.filter-search select {
  padding: 0.55rem 0.6rem;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.20);
  background: rgba(2, 6, 23, 0.25);
  color: rgba(248, 250, 252, 0.95);
}

.filter-search input:focus,
.filter-search select:focus {
  outline: none;
  border-color: rgba(56, 189, 248, 0.65);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.18);
}

.filter-chips {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.filter-chips-label {
  color: rgba(148, 163, 184, 0.85);
  font-size: 0.85rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(148, 163, 184, 0.10);
  color: rgba(248, 250, 252, 0.92);
  cursor: pointer;
}

.chip:hover {
  border-color: rgba(56, 189, 248, 0.35);
  background: rgba(56, 189, 248, 0.12);
}

.chip-x {
  color: rgba(248, 250, 252, 0.8);
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.filter-group label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(148, 163, 184, 0.9);
}

.filter-group input,
.filter-group select {
  padding: 0.6rem 0.75rem;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: rgba(15, 23, 42, 0.85);
  color: #f8fafc;
}

.filter-group input:focus,
.filter-group select:focus {
  outline: none;
  border-color: #38bdf8;
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.25);
}

.filter-actions {
  display: flex;
  gap: 0.75rem;
}

.filter-actions button {
  flex: 1;
  padding: 0.6rem 0.75rem;
  border-radius: 10px;
  border: none;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.filter-actions button[type="submit"] {
  background: linear-gradient(135deg, #38bdf8, #22d3ee);
  color: #0f172a;
  box-shadow: 0 12px 24px rgba(34, 211, 238, 0.2);
}

.filter-actions button.secondary {
  background: rgba(148, 163, 184, 0.15);
  color: rgba(248, 250, 252, 0.9);
}

.filter-actions button:hover {
  transform: translateY(-2px);
}

.stats-filter {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  flex-wrap: wrap;
}

.stats-filter .filter-group {
  flex: 1;
  min-width: 240px;
}

.stats-header {
  display: flex;
  gap: 1.25rem;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
}

.stats-header-left {
  min-width: min(520px, 100%);
}

.stats-header-kicker {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(148, 163, 184, 0.9);
}

.stats-header-title {
  margin-top: 0.25rem;
  font-size: 1.55rem;
  font-weight: 760;
  letter-spacing: 0.01em;
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.stats-header-status {
  font-size: 0.85rem;
  color: rgba(148, 163, 184, 0.9);
  font-weight: 650;
}

.stats-header-subtitle {
  margin-top: 0.2rem;
  font-size: 0.9rem;
  color: rgba(148, 163, 184, 0.85);
  font-variant-numeric: tabular-nums;
}

.stats-header-error {
  margin-top: 0.35rem;
  font-size: 0.9rem;
  color: rgba(248, 113, 113, 0.95);
}

.stats-header-right {
  flex: 1;
  min-width: min(420px, 100%);
}

.stats-pilot-search {
  display: grid;
  grid-template-columns: 1fr minmax(160px, 240px);
  gap: 0.75rem;
  align-items: end;
}

.stats-pilot-search .filter-group {
  position: relative;
}

.stats-pilot-search .filter-actions button {
  flex: unset;
}

.stats-pilot-search .filter-actions {
  margin-bottom: 0.05rem;
}

.pilot-suggestions {
  position: absolute;
  z-index: 1000;
  margin-top: 0.45rem;
  width: min(560px, 100%);
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(2, 6, 23, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.6);
  overflow: hidden;
}

.pilot-suggestions-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  border: none;
  background: transparent;
  color: rgba(248, 250, 252, 0.92);
  text-align: left;
  cursor: pointer;
}

.pilot-suggestions-item:hover {
  background: rgba(56, 189, 248, 0.14);
}

.pilot-suggestions-item.is-disabled {
  cursor: default;
  color: rgba(148, 163, 184, 0.9);
}

.pilot-suggestions-item.is-disabled:hover {
  background: transparent;
}

.pilot-suggestions-name {
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}


.stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stats-overview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.stats-card {
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.stats-card-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(148, 163, 184, 0.9);
}

.stats-card-value {
  margin-top: 0.35rem;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.stats-card-value-large {
  font-size: clamp(2.35rem, 3.2vw + 1.2rem, 3.05rem);
  line-height: 1.02;
  margin-top: 0.3rem;
}

.stats-card-subvalue {
  margin-top: 0.35rem;
  font-size: 0.9rem;
  color: rgba(148, 163, 184, 0.95);
  letter-spacing: 0.01em;
  white-space: pre-wrap;
}

.stats-card-split {
  margin-top: 0.75rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(2, 6, 23, 0.22);
  overflow: hidden;
}

.stats-card-split-cell {
  padding: 0.6rem 0.7rem;
}

.stats-card-split-left {
  border-right: 1px solid rgba(148, 163, 184, 0.14);
}

.stats-card-split-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: rgba(148, 163, 184, 0.9);
}

.stats-card-split-value {
  margin-top: 0.25rem;
  font-size: 1.05rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.stats-sections {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.stats-section {
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.stats-section-group {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.stats-subsections {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.12);
  background: rgba(2, 6, 23, 0.18);
  overflow: hidden;
}

.stats-subsection {
  padding: 0.85rem;
}

.stats-subsection-left {
  border-right: 1px solid rgba(148, 163, 184, 0.12);
}

.stats-subsection-span {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.stats-subsection-title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.9);
  margin-bottom: 0.65rem;
}

.stats-section-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 650;
  letter-spacing: 0.01em;
}

.stats-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.stats-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.stats-row {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.65rem 0.75rem;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(2, 6, 23, 0.22);
}

.stats-row-bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    rgba(56, 189, 248, 0.22),
    rgba(56, 189, 248, 0.08)
  );
  pointer-events: none;
}

.stats-row-key,
.stats-row-value {
  position: relative;
  z-index: 1;
}

.stats-row-key {
  color: rgba(248, 250, 252, 0.9);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.stats-row-value {
  color: rgba(148, 163, 184, 0.95);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}


.feed-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.feed-card {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0.9rem;
  align-items: center;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.feed-card:hover {
  border-color: rgba(56, 189, 248, 0.22);
  background: rgba(15, 23, 42, 0.62);
}

.feed-icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(248, 250, 252, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(2, 6, 23, 0.22);
}

.feed-icon.icon-danger {
  background: rgba(239, 68, 68, 0.20);
  border-color: rgba(239, 68, 68, 0.35);
}

.feed-icon.icon-success {
  background: rgba(34, 197, 94, 0.18);
  border-color: rgba(34, 197, 94, 0.32);
}

.feed-icon.icon-warning {
  background: rgba(245, 158, 11, 0.18);
  border-color: rgba(245, 158, 11, 0.32);
}

.feed-icon.icon-info {
  background: rgba(56, 189, 248, 0.18);
  border-color: rgba(56, 189, 248, 0.32);
}

.feed-main {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 0;
}

.feed-headline {
  font-size: 1.05rem;
  font-weight: 650;
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.feed-headline-link {
  font-weight: 750;
  color: rgba(125, 211, 252, 0.95);
  text-decoration: none;
}

.feed-headline-link:hover {
  color: rgba(56, 189, 248, 0.98);
  text-decoration: underline;
  text-decoration-color: rgba(56, 189, 248, 0.9);
  text-underline-offset: 2px;
}

.feed-headline-link:focus-visible {
  outline: 2px solid rgba(56, 189, 248, 0.65);
  outline-offset: 2px;
  border-radius: 4px;
}

.feed-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  color: rgba(148, 163, 184, 0.9);
  font-size: 0.85rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.18);
  color: rgba(248, 250, 252, 0.86);
}

a.pill {
  text-decoration: none;
}

button.pill {
  appearance: none;
  font: inherit;
}

.pill-clickable {
  cursor: pointer;
}

.pill-clickable:hover {
  border-color: rgba(56, 189, 248, 0.35);
  background: rgba(56, 189, 248, 0.16);
}

button.pill-active,
.pill-active {
  background: rgba(56, 189, 248, 0.28) !important;
  border-color: rgba(56, 189, 248, 0.5) !important;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.4) !important;
  transform: translateY(1px);
}

.facet-action-menu {
  position: fixed;
  z-index: 10050;
  width: 260px;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(2, 6, 23, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.6);
  overflow: hidden;
}

.facet-action-menu-item {
  width: 100%;
  text-align: left;
  padding: 0.7rem 0.85rem;
  border: none;
  background: transparent;
  color: rgba(248, 250, 252, 0.92);
  cursor: pointer;
}

.facet-action-menu-item:hover {
  background: rgba(56, 189, 248, 0.14);
}

.pill-unit {
  background: rgba(56, 189, 248, 0.12);
  border-color: rgba(56, 189, 248, 0.18);
}

.pill-pilot {
  background: rgba(56, 189, 248, 0.12);
  border-color: rgba(56, 189, 248, 0.18);
}

.pill-weapon {
  background: rgba(56, 189, 248, 0.12);
  border-color: rgba(56, 189, 248, 0.18);
}

.pill-server {
  background: rgba(56, 189, 248, 0.12);
  border-color: rgba(56, 189, 248, 0.18);
}

.pill-place {
  background: rgba(56, 189, 248, 0.12);
  border-color: rgba(56, 189, 248, 0.18);
}

.feed-time {
  margin-left: auto;
  color: rgba(148, 163, 184, 0.85);
}


.empty-state {
  padding: 2rem;
  text-align: center;
  color: rgba(148, 163, 184, 0.9);
}

.alert {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 14px;
  background: rgba(248, 113, 113, 0.18);
  border: 1px solid rgba(248, 113, 113, 0.4);
}

.alert button {
  background: rgba(248, 250, 252, 0.1);
  border: none;
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  color: #f8fafc;
  cursor: pointer;
}

.status-area {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.status {
  color: rgba(148, 163, 184, 0.9);
  font-size: 0.9rem;
}

.sentinel {
  width: 100%;
  height: 1px;
}

@media (max-width: 768px) {
  .filter-bar {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }

  .feed-table th,
  .feed-table td {
    padding: 0.75rem;
  }

  table.feed-table tr td[data-label]::before {
    content: attr(data-label) " ";
    display: none;
    font-weight: 600;
    color: rgba(148, 163, 184, 0.75);
  }

  .stats-overview {
    grid-template-columns: 1fr;
  }

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

  .stats-card-split-left {
    border-right: none;
    border-bottom: 1px solid rgba(148, 163, 184, 0.14);
  }

  .stats-sections {
    grid-template-columns: 1fr;
  }

  .stats-subsections {
    grid-template-columns: 1fr;
  }

  .stats-subsection-left {
    border-right: none;
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  }
}


/*# sourceMappingURL=main.b06412700afd7ecd5650.css.map*/