/*!*************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./app/globals.css ***!
  \*************************************************************************************************************************************************************************************************************************************************************/
:root {
  --bg: #dfe8ff;
  --surface: #ffffff;
  --surface-soft: #f7faff;
  --line: #dbe5f4;
  --text: #142033;
  --muted: #66768d;
  --blue: #2563eb;
  --blue-soft: #e8f1ff;
  --mint: #0f9f8a;
  --green: #17a866;
  --amber: #d97706;
  --coral: #f06445;
  --violet: #7c3aed;
  --shadow: 0 16px 40px rgba(31, 64, 120, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "Inter", "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
}

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

button {
  border: 0;
  cursor: pointer;
}

a {
  color: var(--blue);
  text-decoration: none;
}

.login-shell {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.2), transparent 34%),
    linear-gradient(315deg, rgba(15, 159, 138, 0.18), transparent 38%),
    var(--bg);
}

.login-card {
  display: grid;
  grid-gap: 14px;
  gap: 14px;
  width: min(420px, 100%);
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.login-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--mint));
}

.login-card p {
  margin: 0;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.login-card label {
  display: grid;
  grid-gap: 8px;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.login-card input {
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  outline: 0;
  background: #fff;
  color: var(--text);
}

.login-card button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  border-radius: 6px;
  background: var(--blue);
  color: #fff;
  font-weight: 800;
}

.login-error {
  color: #b91c1c;
  font-size: 13px;
  font-weight: 700;
}

.dashboard-shell {
  min-height: 100vh;
  padding: 18px;
}

.admin-toolbar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.admin-toolbar > div {
  display: grid;
  grid-gap: 2px;
  gap: 2px;
  min-width: 160px;
}

.admin-toolbar span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.admin-toolbar strong {
  color: #1f3757;
}

.admin-toolbar label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.admin-toolbar select {
  min-width: 170px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
}

.public-link,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 38px;
  border-radius: 6px;
  padding: 0 12px;
  font-weight: 800;
}

.public-link {
  margin-left: auto;
  color: #fff;
  background: var(--mint);
}

.ghost-button {
  border: 1px solid var(--line);
  color: var(--blue);
  background: #fff;
}

.topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  min-height: 58px;
  padding-bottom: 10px;
}

.eyebrow {
  margin: 0;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: #1264ff;
  font-size: clamp(24px, 3vw, 34px);
  font-style: italic;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: 16px;
}

.company-meta {
  display: flex;
  padding-top: 10px;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  color: #26364d;
  font-size: 16px;
}

.company-meta span {
  color: var(--muted);
}

.toast {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.toast.success {
  color: #047857;
}

.toast.error {
  color: #b91c1c;
}

.toast button {
  margin-left: auto;
  color: var(--muted);
  background: transparent;
}

.hero-panel,
.panel,
.filter-bar {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.hero-panel {
  display: grid;
  grid-template-columns: minmax(520px, 1.45fr) minmax(260px, 0.85fr) minmax(220px, 0.7fr);
  align-items: center;
  min-height: 480px;
  padding: 24px 20px;
  overflow: hidden;
}

.rank-stack {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.rank-stack.right {
  align-items: flex-end;
}
@media (min-width:1024px){
.model-stack {
  justify-content: center;
  gap: 15px;
  min-height: 428px;
  padding: 8px 180px 20px 0px;
  align-items: center;
}}
@media (max-width: 678px) { 
.model-stack {
justify-content: center;
  gap: 15px;
  min-height: 428px;
  
  align-items: center;}}
.rank-pill {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto auto;
  align-items: center;
  grid-gap: 10px;
  gap: 10px;
  width: min(296px, 100%);
  height: 36px;
  padding: 0 12px;
  border-radius: 6px;
  background: linear-gradient(90deg, rgba(217, 229, 255, 0.95), rgba(255, 255, 255, 0.54));
  color: #26364d;
  font-size: 14px;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
  will-change: transform;
}

.rank-pill.search {
  grid-template-columns: auto minmax(0, 1fr) auto 34px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.5), rgba(213, 224, 255, 0.95));
}

.rank-pill.is-hovered,
.rank-pill:hover {
  transform: translateX(-16px);
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.16);
  background: linear-gradient(90deg, rgba(195, 215, 255, 0.98), rgba(255, 255, 255, 0.72));
}

.rank-pill span,
.chip-icon {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: #ffffff;
  color: var(--blue);
  font-weight: 800;
}

.rank-pill b {
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-pill strong {
  color: #1f2937;
  font-size: 14px;
}

.rank-pill em {
  min-width: 34px;
  border-radius: 999px;
  padding: 2px 7px;
  background: rgba(37, 99, 235, 0.1);
  color: #1d4ed8;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  text-align: center;
}

.model-stack .rank-pill {
  grid-template-columns: 48px minmax(0, 1fr) auto auto;
  gap: 16px;
  width: clamp(320px, 32vw, 350px);
  height: 36px;
  padding: 0 22px 0 18px;
  border-radius: 11px;
  background: linear-gradient(90deg, rgba(190, 199, 255, 0.95), rgba(224, 226, 255, 0.8), rgba(255, 255, 255, 0.24));
  box-shadow: 0 12px 28px rgba(80, 93, 190, 0.1);
}

.model-stack .rank-pill:nth-child(1) {
  margin-left: clamp(150px, 19vw, 250px);
}

.model-stack .rank-pill:nth-child(2) {
  margin-left: clamp(105px, 14vw, 185px);
}

.model-stack .rank-pill:nth-child(3) {
  margin-left: clamp(54px, 8vw, 112px);
}

.model-stack .rank-pill:nth-child(4) {
  margin-left: 0;
}

.model-stack .rank-pill:nth-child(5) {
  margin-left: clamp(62px, 9vw, 120px);
}

.model-stack .rank-pill:nth-child(6) {
  margin-left: clamp(112px, 15vw, 190px);
}

.model-stack .rank-pill:nth-child(7) {
  margin-left: clamp(160px, 20vw, 254px);
}

.model-stack .rank-pill:nth-child(8) {
  margin-left: clamp(190px, 24vw, 304px);
}

.model-stack .rank-pill span {
width: 24px;
    height: 24px;
  border-radius: 9px;
  font-size: 13px;
}

.model-stack .rank-pill b {
  color: #202642;
  font-size: 14px;
  font-weight: 500;
}

.model-stack .rank-pill strong {
  min-width: 74px;
  color: #1f1f28;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 800;
  text-align: right;
  font-size: 14px;
}

.model-stack .rank-pill em {
  min-width: 38px;
  padding: 3px 8px;
  background: rgba(67, 82, 255, 0.11);
  color: #3340d4;
  font-size: 12px;
}

.infinity-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 250px;
}

.infinity-mark {
      place-items: center;
    color: transparent;
    font-size: 250px;
	padding: 0 120px 20px 0;
    /* line-height: 1; */
    font-weight: 700;
  background:
    radial-gradient(circle at 28% 45%, rgba(240, 77, 167, 0.82), transparent 22%),
    radial-gradient(circle at 63% 42%, rgba(67, 171, 247, 0.88), transparent 26%),
    linear-gradient(90deg, #f054a6, #7c3aed, #54d6d8, #2563eb);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 18px 18px rgba(118, 101, 255, 0.25));
}

.beam {
  position: absolute;
  top: 50%;
  width: 74px;
  height: 60px;
  transform: translateY(-50%);
  -webkit-clip-path: polygon(0 50%, 100% 0, 70% 50%, 100% 100%);
          clip-path: polygon(0 50%, 100% 0, 70% 50%, 100% 100%);
  opacity: 0.78;
}

.beam.left {
  left: -100px;
  background: linear-gradient(90deg, transparent, #38bdf8);
}

.beam.right {
  right: 30px;
  background: linear-gradient(90deg, transparent, #38bdf8);
  transform: translateY(-50%) rotate(180deg);
}

.stage-caption {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #2849f4;
  font-weight: 800;
  font-size: 25px;
}

.left-caption {
 left: 0;
    top: 40px;
}

.right-caption {
      right: 0;
    bottom: 52px;
}

.filter-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding: 12px;
  flex-wrap: wrap;
}

.filter-bar label,
.field {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 10px;
  background: #fff;
  color: var(--muted);
}

.filter-bar input,
.filter-bar select,
.field input,
.field select,
.field textarea {
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--text);
  background: transparent;
}

.search-field {
  flex: 1 1;
  min-width: 220px;
}

.search-field input {
  width: 100%;
}

.date-separator,
.muted {
  color: var(--muted);
}

.icon-button {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 6px;
  background: var(--blue);
  color: #fff;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 14px;
  gap: 14px;
  margin-top: 14px;
}

.panel {
  padding: 14px;
}

.panel-title {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  color: #1f3757;
  margin-bottom: 10px;
}

.panel-title.split {
  justify-content: space-between;
}

.panel-title.split span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.panel-title button,
.result-form button,
.form-panel button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  border-radius: 6px;
  padding: 0 12px;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
}

.form-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.panel-title button.secondary-action,
.secondary-action {
  border: 1px solid rgba(37, 99, 235, 0.22);
  background: var(--blue-soft);
  color: var(--blue);
}

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

.metric-card {
  min-height: 92px;
  padding: 14px;
  border-left: 4px solid var(--blue);
  border-radius: 6px;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.09), rgba(255, 255, 255, 0.76));
}

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

.metric-card strong {
  display: block;
  margin: 6px 0 2px;
  font-size: 26px;
  letter-spacing: 0;
}

.metric-card.coral {
  border-color: var(--coral);
  background: linear-gradient(90deg, rgba(240, 100, 69, 0.11), rgba(255, 255, 255, 0.8));
}

.metric-card.violet {
  border-color: var(--violet);
  background: linear-gradient(90deg, rgba(124, 58, 237, 0.11), rgba(255, 255, 255, 0.8));
}

.metric-card.mint {
  border-color: var(--mint);
  background: linear-gradient(90deg, rgba(15, 159, 138, 0.12), rgba(255, 255, 255, 0.8));
}

.metric-card.amber {
  border-color: var(--amber);
  background: linear-gradient(90deg, rgba(217, 119, 6, 0.12), rgba(255, 255, 255, 0.8));
}

.metric-card.green {
  border-color: var(--green);
  background: linear-gradient(90deg, rgba(23, 168, 102, 0.12), rgba(255, 255, 255, 0.8));
}

.word-chart {
  height: 234px;
}

.word-cloud-stage {
  position: relative;
  height: 334px;
  overflow: hidden;
  border-radius: 8px;
  background:
    radial-gradient(circle at 62% 48%, rgba(37, 99, 235, 0.1), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(239, 246, 255, 0.9));
  isolation: isolate;
}

.word-cloud-stage::before,
.word-cloud-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.word-cloud-stage::before {
  background:
    linear-gradient(90deg, rgba(247, 250, 255, 0.98), transparent 12%, transparent 88%, rgba(247, 250, 255, 0.98)),
    linear-gradient(180deg, rgba(247, 250, 255, 0.9), transparent 18%, transparent 82%, rgba(247, 250, 255, 0.9));
}

.word-cloud-stage::after {
  border: 1px solid rgba(37, 99, 235, 0.1);
  border-radius: inherit;
}

.word-empty {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  color: var(--muted);
  font-size: 13px;
  transform: translate(-50%, -50%);
}

.word-bubble {
  position: absolute;
  left: 0;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 5px 13px;
  border: 1px solid rgba(59, 130, 246, 0.16);
  border-radius: 999px;
  background: rgba(35, 96, 194, 0.84);
  color: #fff;
  box-shadow: 0 8px 18px rgba(30, 64, 175, 0.14);
  font-size: 12px;
  font-weight: 800;
  opacity: var(--word-opacity, 0.72);
  transform: translate3d(0, 0, 0) scale(var(--word-scale, 1));
  animation: wordFloat var(--word-duration, 10s) cubic-bezier(0.22, 0.72, 0.28, 1) var(--word-delay, 0s) infinite;
  transform-origin: center;
  white-space: nowrap;
  will-change: transform, opacity;
  z-index: 1;
}

.word-bubble.is-primary {
  min-height: 34px;
  padding: 7px 18px;
  background: #1d4ed8;
  box-shadow: 0 14px 28px rgba(30, 64, 175, 0.22);
  font-size: 16px;
  z-index: 2;
}

.word-bubble.tone-1 {
  background: rgba(37, 99, 235, 0.72);
}

.word-bubble.tone-2 {
  background: rgba(58, 108, 190, 0.58);
}

.word-bubble.tone-3 {
  background: rgba(29, 78, 216, 0.42);
  color: #eaf2ff;
}

@keyframes wordFloat {
  0% {
    opacity: 0;
    filter: blur(2px);
    transform: translate3d(0, 0, 0) scale(calc(var(--word-scale, 1) * 0.22));
  }

  12% {
    opacity: var(--word-opacity, 0.72);
    filter: blur(0);
    transform: translate3d(calc(var(--word-dx, 120px) * 0.1), calc(var(--word-dy, 0px) * -0.12), 0) scale(calc(var(--word-scale, 1) * 0.56));
  }

  58% {
    opacity: var(--word-opacity, 0.72);
    transform: translate3d(calc(var(--word-dx, 120px) * 0.46), calc(var(--word-dy, 0px) * -0.4), 0) scale(var(--word-scale, 1));
  }

  82% {
    opacity: var(--word-opacity, 0.72);
    transform: translate3d(calc(var(--word-dx, 120px) * 0.76), calc(var(--word-dy, 0px) * -0.16), 0) scale(calc(var(--word-scale, 1) * 1.28));
  }

  100% {
    opacity: 0;
    filter: blur(1px);
    transform: translate3d(var(--word-dx, 120px), var(--word-dy, 0px), 0) scale(calc(var(--word-scale, 1) * 1.58));
  }
}

.trend-panel,
.table-panel,
.ops-grid {
  margin-top: 14px;
}

.trend-chart {
  height: 270px;
}

.platform-chip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  grid-gap: 10px;
  gap: 10px;
  margin-bottom: 14px;
}

.platform-chip {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  grid-gap: 8px;
  gap: 8px;
  min-height: 52px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--text);
  text-align: left;
}

.platform-chip.active {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

.platform-chip.active .chip-icon,
.platform-chip.active svg {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.platform-chip span:nth-child(2) {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12px;
}

.data-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.data-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
  background: #fff;
}

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

.data-table th {
  color: #475569;
  background: #f8fafc;
  font-size: 13px;
}

.hot {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 700;
  font-size: 14px;
}

.hot svg {
  color: #f97316;
}

.data-table small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.status {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  border-radius: 6px;
  padding: 0 8px;
  font-size: 13px;
  font-weight: 700;
}

.status.visible {
  color: #047857;
  background: #dcfce7;
}

.status.miss {
  color: #b91c1c;
  background: #fee2e2;
}

.empty-cell {
  height: 120px;
  text-align: center !important;
  color: var(--muted);
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 12px;
}

.pagination button {
  min-height: 34px;
  border-radius: 6px;
  padding: 0 12px;
  background: #edf4ff;
  color: var(--blue);
  font-weight: 700;
}

.pagination button:disabled {
  cursor: not-allowed;
  color: #94a3b8;
}

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

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

.field {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 3px;
  padding: 8px 10px;
}

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

.field input,
.field select,
.field textarea {
  width: 100%;
}

.field textarea {
  min-height: 96px;
  resize: vertical;
}

.field.wide {
  grid-column: 1 / -1;
}

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

.template-link,
.upload-card {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 54px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface-soft);
  color: var(--text);
  font-weight: 700;
}

.upload-card {
  cursor: pointer;
}

.upload-card input {
  display: none;
}

.keyword-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.keyword-list span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 6px;
  background: #eff6ff;
  color: #1d4ed8;
  font-size: 13px;
}

@media (max-width: 1100px) {
  .hero-panel,
  .content-grid,
  .ops-grid {
    grid-template-columns: 1fr;
  }

  .rank-stack.right {
   align-items: center;
  }

  .rank-pill,
  .rank-pill.search {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .admin-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-toolbar label,
  .admin-toolbar select,
  .public-link,
  .ghost-button {
    width: 100%;
  }

  .public-link {
    margin-left: 0;
  }
}

@media (max-width: 720px) {
  .dashboard-shell {
    padding: 10px;
  }

  .topbar {
    flex-direction: column;
  }

  .company-meta {
    align-items: flex-start;
  }

  .hero-panel {
    min-height: auto;
    padding: 12px;
	align-items: center;
  }

  .infinity-stage {
    min-height: 120px;
  }

  .infinity-mark {
    height: 128px;
    font-size: 170px;
	display:none;
  }

  .stage-caption {
    position: static;
    justify-content: center;
    margin-top: 6px;
  }

  .beam {
    display: none;
  }

  .metric-grid,
  .form-grid,
  .result-form-grid,
  .import-actions {
    grid-template-columns: 1fr;
  }

  .filter-bar {
    align-items: stretch;
  }

  .filter-bar label,
  .search-field {
    width: 100%;
  }
}

