:root {
  --bg: #f7fbff;
  --bg-card: #ffffff;
  --bg-sidebar: #ecf5ff;
  --primary: #1c91f2;
  --primary-dark: #0b63c5;
  --accent: #1ac6b9;
  --text: #20324d;
  --text-light: #5c6f8a;
  --border: #d8e4f0;
  --history-panel-height: clamp(300px, 45vh, 360px);
  font-family: 'Manrope', 'PingFang SC', 'Microsoft YaHei', sans-serif;
}

* {
  box-sizing: border-box;
}
html {
    font-size: 118%; /* 通常默认是 16px，这里放大到 20px */
  }
  
body {
  margin: 0;
  background: linear-gradient(130deg, rgba(235, 247, 255, 0.85), rgba(247, 251, 255, 0.95));
  color: var(--text);
}

h1,
 h2,
 h3 {
  margin: 0;
  color: var(--text);
}

p {
  margin: 0;
  color: var(--text-light);
}

.layout {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 280px 1fr;
}

.layout.is-locked {
  display: none;
}

.auth {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
  background: radial-gradient(circle at top left, rgba(28, 145, 242, 0.2), transparent 55%),
    radial-gradient(circle at bottom right, rgba(26, 198, 185, 0.18), transparent 50%), var(--bg);
}

.auth.is-hidden {
  display: none;
}

.auth__card {
  width: min(420px, 100%);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 24px;
  padding: 40px 36px;
  display: grid;
  gap: 28px;
  box-shadow: 0 24px 64px rgba(20, 65, 116, 0.18);
  border: 1px solid rgba(28, 145, 242, 0.2);
  backdrop-filter: blur(8px);
}

.auth__brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.auth__brand img {
  width: 68px;
  height: 68px;
}

.auth__brand-info h1 {
  margin: 0;
  font-size: 1.75rem;
  color: var(--primary-dark);
}

.auth__brand-info p {
  margin: 4px 0 0;
  font-size: 0.95rem;
}

.auth__form {
  display: grid;
  gap: 18px;
}

.auth__form-group {
  display: grid;
  gap: 8px;
}

.auth__form-group label {
  font-weight: 600;
  color: var(--text);
}

.auth__form-group input {
  border-radius: 12px;
  border: 1px solid rgba(28, 145, 242, 0.25);
  padding: 12px 14px;
  font-size: 0.95rem;
  outline: none;
  background: rgba(247, 251, 255, 0.95);
}

.auth__error {
  min-height: 20px;
  color: #d9534f;
  font-size: 0.85rem;
  text-align: center;
}

.button--primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.sidebar {
  background: var(--bg-sidebar);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-right: 1px solid var(--border);
  position: sticky;
  top: 0;
  height: 100vh;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand__logo {
  width: 64px;
  height: 64px;
}

.brand__name {
  font-weight: 700;
  font-size: 1.25rem;
}

.brand__tagline {
  font-size: 0.75rem;
  color: var(--primary-dark);
  letter-spacing: 0.04em;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.material-filter {
  display: grid;
  gap: 6px;
  width: 100%;
}

.material-filter label {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 600;
}

.material-filter select {
  border-radius: 12px;
  border: 1px solid rgba(28, 145, 242, 0.25);
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--primary-dark);
  font-weight: 600;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}

.material-filter select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(28, 145, 242, 0.2);
}

.nav__item {
  background: transparent;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 0.95rem;
  text-align: left;
  color: var(--text);
  transition: all 0.2s ease;
  cursor: pointer;
}

.nav__item:hover {
  background: rgba(28, 145, 242, 0.1);
  border-color: rgba(28, 145, 242, 0.2);
}

.nav__item.is-active {
  background: #fff;
  border-color: var(--primary);
  color: var(--primary-dark);
  box-shadow: 0 12px 24px rgba(28, 145, 242, 0.18);
}

.sidebar__footer {
  margin-top: auto;
  font-size: 0.8rem;
  color: var(--text-light);
}

.sidebar__actions {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.sidebar__action {
  border: 1px solid rgba(28, 145, 242, 0.25);
  border-radius: 12px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  color: var(--primary-dark);
  font-weight: 600;
  transition: all 0.2s ease;
}

.sidebar__action:hover {
  background: rgba(28, 145, 242, 0.12);
}

.sidebar__action--accent {
  background: linear-gradient(135deg, rgba(28, 145, 242, 0.85), rgba(26, 198, 185, 0.9));
  color: #fff;
  border-color: transparent;
}

.sidebar__action--accent:hover {
  filter: brightness(1.05);
}

.main {
  padding: 40px 48px;
  overflow: auto;
}

.panel {
  display: none;
  flex-direction: column;
  gap: 24px;
}

.panel.is-visible {
  display: flex;
}

.panel__header {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.panel__subtitle {
  font-size: 0.95rem;
}

.filters {
  background: var(--bg-card);
  border-radius: 18px;
  padding: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 18px 32px rgba(32, 82, 149, 0.08);
}

.filters h2 {
  font-size: 1rem;
  margin-bottom: 12px;
}

.filters__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px 18px;
  align-items: end;
}

.range {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg);
  border-radius: 12px;
  padding: 6px 10px;
  border: 1px solid transparent;
}

.range input {
  width: 100%;
  border: none;
  background: transparent;
  outline: none;
  font-size: 0.9rem;
  color: var(--text);
}

.range span {
  color: var(--text-light);
  font-size: 0.85rem;
}

.button {
  border: none;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 12px;
  padding: 12px 24px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(28, 145, 242, 0.24);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.65);
  color: var(--primary-dark);
  border: 1px solid rgba(28, 145, 242, 0.25);
  box-shadow: none;
}

.panel__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.database {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  align-items: start;
}

.database--with-detail {
  grid-template-columns: minmax(420px, 1fr) minmax(0, 1fr);
}

.database__list {
  background: var(--bg-card);
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 16px 30px rgba(20, 65, 116, 0.08);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.list-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.list-toolbar__controls {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-left: auto;
}

.page-size {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-light);
}

.page-size select {
  border-radius: 10px;
  border: 1px solid rgba(28, 145, 242, 0.25);
  padding: 6px 10px;
  background: rgba(247, 251, 255, 0.9);
  font-size: 0.88rem;
  color: var(--text);
}

.pagination {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pagination__button {
  border: 1px solid rgba(28, 145, 242, 0.2);
  background: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  padding: 6px 12px;
  font-size: 0.85rem;
  cursor: pointer;
  color: var(--primary-dark);
  transition: all 0.2s ease;
}

.pagination__button:hover:not(:disabled) {
  background: rgba(28, 145, 242, 0.12);
}

.pagination__button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.pagination__status {
  font-size: 0.85rem;
  color: var(--text-light);
}

.list-toolbar__label {
  font-weight: 600;
  color: var(--text-light);
}

.performance-toggle {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.performance-toggle__button {
  border: 1px solid rgba(28, 145, 242, 0.18);
  background: rgba(247, 251, 255, 0.85);
  color: var(--primary-dark);
  border-radius: 999px;
  padding: 8px 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.performance-toggle__button:hover {
  border-color: rgba(28, 145, 242, 0.32);
  background: #fff;
  box-shadow: 0 6px 12px rgba(28, 145, 242, 0.18);
}

.performance-toggle__button.is-active {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 10px 20px rgba(28, 145, 242, 0.25);
}

.list-view {
  border: 1px solid rgba(28, 145, 242, 0.12);
  border-radius: 16px;
  overflow: hidden;
}

.list-view__header {
  display: grid;
  grid-template-columns: 1.6fr 0.9fr 1.1fr 1.5fr;
  background: rgba(236, 245, 255, 0.6);
  padding: 14px 20px;
  font-weight: 600;
  color: var(--text-light);
  gap: 16px;
}

.list-view__body {
  display: flex;
  flex-direction: column;
  background: #fff;
}

.list-view__body .empty-state {
  padding: 24px 20px;
  text-align: center;
}

.list-view__row {
  display: grid;
  grid-template-columns: 1.6fr 0.9fr 1.1fr 1.5fr;
  gap: 16px;
  padding: 16px 20px;
  border: none;
  border-bottom: 1px solid rgba(28, 145, 242, 0.08);
  background: #fff;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s ease, box-shadow 0.2s ease;
  font: inherit;
  color: inherit;
}

.list-view__row:last-child {
  border-bottom: none;
}

.list-view__row:hover {
  background: rgba(236, 245, 255, 0.7);
}

.list-view__row.is-active {
  background: rgba(28, 145, 242, 0.12);
  box-shadow: inset 0 0 0 1px rgba(28, 145, 242, 0.35);
}

.list-view__cell {
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
}

.list-view__cell--name {
  gap: 6px;
}

.list-view__title {
  font-weight: 600;
}

.list-view__meta {
  font-size: 0.8rem;
  color: var(--text-light);
}

.list-view__cell--feature {
  color: var(--text-light);
}


.detail-card {
  background: var(--bg-card);
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 24px;
  box-shadow: 0 20px 34px rgba(16, 52, 94, 0.08);
}

.database__detail {
  display: none;
  min-height: 480px;
}

.database__detail.is-visible {
  display: block;
}

.detail__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.detail__title {
  font-size: 1.35rem;
  font-weight: 700;
}

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

.tag {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  background: rgba(26, 198, 185, 0.12);
  color: var(--primary-dark);
}

.detail__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.metric {
  border-radius: 14px;
  background: rgba(236, 245, 255, 0.55);
  padding: 16px;
  border: 1px solid rgba(28, 145, 242, 0.08);
}

.metric__label {
  font-size: 0.75rem;
  color: var(--text-light);
}

.metric__value {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 6px;
}

.chart-wrapper {
  margin-top: 24px;
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  border: 1px solid rgba(223, 233, 245, 0.8);
}

.placeholder {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-light);
}

.placeholder--compact {
  padding: 36px 16px;
}

.form,
 .recommendations,
 .recommendation-detail {
  background: var(--bg-card);
  border-radius: 18px;
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 16px 28px rgba(20, 65, 116, 0.08);
}

.form__hint {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 12px;
}

.recommend-layout {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.recommend-top {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.recommend-bottom {
  display: grid;
  gap: 24px;
  margin-top: 24px;
  grid-template-columns: minmax(0, 1fr);
}

.predict-inputs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.predict-inputs > *,
.recommend-top > * {
  min-height: 0;
}

.predict-inputs > .form,
.recommend-top > .form {
  overflow-y: auto;
  padding-right: 4px;
  height: var(--history-panel-height);
}

.predict-inputs > .history-card,
.recommend-top > .history-card {
  height: var(--history-panel-height);
  overflow: hidden;
}

.history-card {
  background: rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  border: 1px solid rgba(28, 145, 242, 0.2);
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 18px 30px rgba(20, 65, 116, 0.08);
  height: 100%;
  min-height: 0;
}

.history-card h3 {
  margin: 0;
  font-size: 1rem;
  color: var(--primary-dark);
}

.history-card__empty {
  font-size: 0.85rem;
  color: var(--text-light);
}

.history-card__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
  flex: 1;
  min-height: 0;
  padding-right: 4px;
}

.history-entry {
  border-radius: 12px;
  padding: 10px 12px;
  background: rgba(236, 245, 255, 0.55);
  border: 1px solid rgba(28, 145, 242, 0.18);
  display: grid;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.history-entry:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(28, 145, 242, 0.12);
}

.history-entry:focus-visible {
  outline: 2px solid rgba(28, 145, 242, 0.7);
  outline-offset: 2px;
}

.history-entry.is-active {
  border-color: rgba(28, 145, 242, 0.55);
  background: rgba(28, 145, 242, 0.14);
}

.history-entry__title {
  font-weight: 600;
  color: var(--primary-dark);
}

.history-entry__meta {
  color: var(--text-light);
  font-size: 0.8rem;
}

.recommendation-detail {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form label,
 .form span {
  font-weight: 500;
}

.form input,
 .form select {
  border-radius: 12px;
  border: 1px solid rgba(28, 145, 242, 0.18);
  padding: 12px 14px;
  font-size: 0.95rem;
  outline: none;
  background: rgba(247, 251, 255, 0.9);
}

.form small {
  color: var(--text-light);
}

.form__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px 18px;
}

.result-card {
  min-height: 120px;
  display: grid;
  gap: 16px;
}

.result-card__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
}

.result-card__chart {
  gap: 12px;
  position: relative;
  min-height: 260px;
  height: 320px;
  max-height: 320px;
  grid-template-rows: auto 1fr;
  overflow: hidden;
}

.result-card__chart h4 {
  margin: 0;
  font-size: 1rem;
  color: var(--primary-dark);
}

.result-card__chart canvas {
  width: 100%;
  height: 100% !important;
  max-height: 100%;
  display: block;
}

.result-card__insight {
  background: rgba(28, 145, 242, 0.08);
  border-radius: 16px;
  padding: 18px 20px;
  display: grid;
  gap: 12px;
}

.result-card__insight h4 {
  margin: 0;
  font-size: 1rem;
  color: var(--primary-dark);
}

.result-card__insight ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  list-style: disc;
}

.predict-overview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}

.stat-card {
  background: linear-gradient(135deg, rgba(28, 145, 242, 0.12), rgba(20, 90, 180, 0.12));
  border-radius: 18px;
  padding: 20px 22px;
  border: 1px solid rgba(28, 145, 242, 0.18);
  box-shadow: 0 12px 24px rgba(20, 65, 116, 0.06);
  display: grid;
  gap: 6px;
}

.stat-card__label {
  font-size: 0.85rem;
  color: var(--text-light);
}

.stat-card__value {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--primary-dark);
}

.stat-card__hint {
  font-size: 0.88rem;
  color: var(--text-light);
}

.predict-layout {
  display: grid;
  grid-template-columns: minmax(340px, 1.2fr) minmax(280px, 1fr);
  gap: 24px;
  align-items: start;
}

.predict-workflow {
  display: grid;
  gap: 24px;
}

.predict-insights {
  display: grid;
  gap: 18px;
}

.insight-card {
  background: rgba(236, 245, 255, 0.7);
  border-radius: 18px;
  border: 1px solid rgba(28, 145, 242, 0.18);
  padding: 22px 24px;
  display: grid;
  gap: 16px;
  backdrop-filter: blur(6px);
}

.insight-card h3,
.insight-card h4 {
  margin: 0;
}

.insight-card__caption {
  font-size: 0.85rem;
  color: var(--text-light);
}

.insight-card__grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.insight-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.insight-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
}

.insight-value {
  font-weight: 600;
  color: var(--primary);
}

.insight-list--bullets {
  list-style: disc;
  padding-left: 20px;
  gap: 10px;
}

.insight-list--bullets li {
  display: list-item;
  line-height: 1.5;
}

.result-card__item {
  background: rgba(236, 245, 255, 0.6);
  border-radius: 16px;
  padding: 16px;
  border: 1px solid rgba(28, 145, 242, 0.12);
}

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

.recommendation {
  border-radius: 16px;
  padding: 18px;
  border: 1px solid rgba(28, 145, 242, 0.18);
  background: rgba(236, 245, 255, 0.6);
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease,
    transform 0.2s ease;
  font: inherit;
  appearance: none;
}

.recommendation.is-loading {
  background: rgba(236, 245, 255, 0.4);
  border-style: dashed;
  color: var(--text-light);
  cursor: progress;
}

.recommendation__loading {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}

.recommendation__loading::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(28, 145, 242, 0.2);
  border-top-color: rgba(28, 145, 242, 0.6);
  animation: spin 0.8s linear infinite;
}

.recommendation:hover {
  background: rgba(236, 245, 255, 0.9);
  border-color: rgba(28, 145, 242, 0.45);
  transform: translateY(-2px);
}

.recommendation.is-active {
  background: rgba(28, 145, 242, 0.12);
  border-color: rgba(28, 145, 242, 0.6);
  box-shadow: 0 8px 18px rgba(28, 145, 242, 0.15);
}

.recommendation:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(28, 145, 242, 0.35);
}

.recommendation__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
}

.recommendation__meta {
  font-size: 0.85rem;
  color: var(--text-light);
}

.recommendation__metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  font-size: 0.85rem;
  color: var(--text-light);
}

.recommendation__score {
  font-size: 0.85rem;
  color: var(--primary-dark);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.empty-state {
  color: var(--text-light);
  font-size: 0.95rem;
}

.loading {
  color: var(--primary-dark);
  font-weight: 600;
  text-align: center;
  padding: 24px 12px;
}

@media (max-width: 1080px) {
  .layout {
    grid-template-columns: 1fr;
  }
  .sidebar {
    position: relative;
    height: auto;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }
  .brand {
    width: 100%;
  }
  .nav {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .main {
    padding: 24px;
  }
  .database {
    grid-template-columns: 1fr;
  }
  .database--with-detail {
    grid-template-columns: 1fr;
  }
  .database__detail {
    order: 2;
  }
  .predict-layout {
    grid-template-columns: 1fr;
  }
  .predict-inputs {
    grid-template-columns: 1fr;
  }
  .recommend-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .list-view__header,
  .list-view__row {
    grid-template-columns: 1.4fr 0.8fr 1fr;
  }
  .list-view__cell--feature {
    display: none;
  }
}

@media (max-width: 640px) {
  .panel__header {
    gap: 12px;
  }
  .filters__grid,
  .form__grid {
    grid-template-columns: 1fr;
  }
  .database__list {
    max-height: none;
  }
  .list-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }
  .list-toolbar__controls {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .pagination {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
  }
  .pagination__status {
    flex: 1 1 100%;
    text-align: center;
  }
  .predict-inputs,
  .recommend-layout {
    grid-template-columns: 1fr;
  }
  .list-view__header,
  .list-view__row {
    grid-template-columns: 1fr 1fr;
  }
  .list-view__row {
    gap: 12px;
  }
}