@font-face {
  font-family: "GenshinUI";
  src:
    local("HYWenHei 85W"),
    local("HYWenHei-85W"),
    local("HYWenHei"),
    local("姹変华鏂囬粦-85W"),
    local("姹変华鏂囬粦 85W");
  font-display: swap;
}

:root {
  color-scheme: light;
  --bg-top: #5f7096;
  --bg-mid: #97a5c0;
  --bg-bottom: #d9c8ae;
  --panel-bg: rgba(247, 250, 255, 0.5);
  --panel-bg-strong: rgba(251, 253, 255, 0.74);
  --card-bg: rgba(248, 250, 253, 0.9);
  --card-bg-soft: rgba(241, 245, 250, 0.82);
  --line: rgba(255, 255, 255, 0.42);
  --line-strong: rgba(108, 127, 156, 0.22);
  --line-soft: rgba(77, 96, 122, 0.1);
  --text: #152033;
  --text-soft: #4d5d73;
  --text-muted: #68788e;
  --text-inverse: #f7fafc;
  --accent: #63b5ff;
  --accent-strong: #2f76ff;
  --accent-soft: rgba(99, 181, 255, 0.18);
  --accent-glow: rgba(99, 181, 255, 0.28);
  --success: #25724f;
  --success-soft: rgba(51, 153, 108, 0.12);
  --warning: #2f76ff;
  --warning-soft: rgba(99, 181, 255, 0.14);
  --danger: #b4564c;
  --danger-soft: rgba(180, 86, 76, 0.12);
  --shadow-lg: 0 28px 70px rgba(29, 43, 64, 0.16);
  --shadow-md: 0 16px 38px rgba(39, 54, 77, 0.12);
  --shadow-sm: 0 8px 18px rgba(42, 56, 78, 0.08);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-pill: 999px;
  --blur: blur(18px) saturate(145%);
  font-family: "GenshinUI", "Microsoft YaHei UI", "PingFang SC", "Noto Sans SC", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background:
    radial-gradient(circle at 12% 14%, rgba(255, 242, 212, 0.3), transparent 20%),
    radial-gradient(circle at 86% 12%, rgba(190, 212, 255, 0.28), transparent 18%),
    radial-gradient(circle at 50% 100%, rgba(251, 227, 188, 0.2), transparent 28%),
    linear-gradient(180deg, var(--bg-top) 0%, var(--bg-mid) 38%, #bcc0c7 62%, var(--bg-bottom) 100%);
  color: var(--text);
}

body {
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 34%),
    radial-gradient(circle at top, rgba(255, 255, 255, 0.1), transparent 44%);
  opacity: 0.6;
  pointer-events: none;
}

.page-glow {
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.28;
  pointer-events: none;
}

.page-glow-left {
  top: -120px;
  left: -80px;
  background: rgba(107, 206, 255, 0.32);
}

.page-glow-right {
  right: -120px;
  bottom: -120px;
  background: rgba(120, 155, 229, 0.34);
}

.shell {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 32px 20px 64px;
}

.panel {
  position: relative;
  overflow: hidden;
  background: var(--panel-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
}

.panel::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  pointer-events: none;
}

.tool-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
  padding: 18px 22px;
}

.tool-toolbar > * {
  position: relative;
  z-index: 1;
}

.tool-toolbar-copy {
  min-width: 0;
}

.tool-toolbar-title {
  margin: 2px 0 0;
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
}

.tool-toolbar-note {
  margin: 6px 0 0;
  color: var(--text-soft);
  line-height: 1.5;
}

.tool-button-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.tool-chip {
  appearance: none;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(93, 115, 144, 0.16);
  border-radius: var(--radius-pill);
  background: rgba(250, 252, 255, 0.72);
  box-shadow: var(--shadow-sm);
  color: var(--text-soft);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.tool-chip:hover {
  transform: translateY(-1px);
  border-color: rgba(88, 132, 255, 0.24);
  color: var(--text);
}

.tool-chip[aria-pressed="true"] {
  border-color: rgba(66, 121, 255, 0.34);
  background: rgba(100, 175, 255, 0.16);
  box-shadow:
    inset 0 0 0 1px rgba(126, 194, 255, 0.22),
    0 10px 22px rgba(40, 57, 82, 0.12);
  color: var(--accent-strong);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 14px;
}

.hero-card,
.tool-card,
.uploader,
.status-panel,
.result-panel {
  position: relative;
  z-index: 1;
}

.hero-card {
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 26px;
  background: var(--card-bg-soft);
  box-shadow: var(--shadow-md);
}

.hero-intro {
  min-height: 100%;
}

.hero-ribbon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  padding: 0 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(99, 181, 255, 0.24);
  background: rgba(99, 181, 255, 0.1);
  color: var(--accent-strong);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-ribbon-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(99, 181, 255, 0.5);
}

.eyebrow,
.tool-kicker {
  margin: 18px 0 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(83, 102, 129, 0.68);
}

.hero h1,
.workspace-head h2,
.tool-card h2,
.section-head h3,
.hero-card h2 {
  margin: 0;
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.hero h1 {
  max-width: 620px;
  font-size: clamp(30px, 4vw, 44px);
  color: var(--text);
}

.lede {
  max-width: 660px;
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 1.66;
  color: var(--text-soft);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(88, 108, 136, 0.1);
  background: rgba(80, 102, 133, 0.08);
  color: var(--text-soft);
  font-size: 14px;
}

.hero-brief {
  display: grid;
  align-content: start;
  gap: 10px;
}

.hero-brief h2 {
  color: var(--text);
  font-size: clamp(24px, 2.8vw, 32px);
}

.hero-flow {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(111, 198, 255, 0.96);
}

.hero-brief-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-brief-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: var(--radius-pill);
  background: rgba(80, 102, 133, 0.08);
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 600;
}

.hero-tip {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.66;
}

.hero-switch {
  grid-column: 1 / -1;
  display: grid;
  gap: 14px;
}

.hero-switch-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.hero-switch h2 {
  font-size: clamp(22px, 2.5vw, 28px);
  color: var(--text);
}

.hero-switch-copy {
  margin: 0;
  max-width: 520px;
  color: var(--text-soft);
  line-height: 1.66;
}

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

.tool-card {
  appearance: none;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 22px;
  background: var(--card-bg-soft);
  box-shadow: var(--shadow-md);
  color: var(--text);
  text-align: left;
  font: inherit;
  cursor: pointer;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.tool-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(41, 56, 78, 0.16);
}

.tool-card[aria-pressed="true"] {
  transform: translateY(-2px);
  border-color: rgba(78, 135, 255, 0.42);
  background: var(--card-bg);
  box-shadow:
    inset 0 0 0 1px rgba(135, 194, 255, 0.26),
    0 22px 48px rgba(39, 53, 74, 0.16);
}

.tool-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.tool-state {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: var(--radius-pill);
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(2px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.tool-card[aria-pressed="true"] .tool-state {
  opacity: 1;
  transform: translateY(0);
}

.tool-card h2 {
  margin-top: 8px;
  font-size: clamp(24px, 2.8vw, 30px);
  color: var(--text);
}

.tool-flow {
  margin: 12px 0 0;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.tool-copy {
  margin: 10px 0 0;
  color: var(--text-soft);
  line-height: 1.6;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.tool-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.tool-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: var(--radius-pill);
  background: rgba(76, 98, 128, 0.08);
  color: var(--text-soft);
  font-size: 13px;
}

.workspace {
  display: none;
  margin-top: 14px;
}

.workspace.is-active {
  display: block;
}

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

.workspace-head h2 {
  color: rgba(249, 252, 255, 0.98);
  font-size: clamp(26px, 3.6vw, 36px);
}

.workspace-summary {
  max-width: 420px;
  margin: 0;
  color: rgba(244, 248, 252, 0.88);
  line-height: 1.66;
}

.workspace-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(320px, 0.92fr);
  gap: 18px;
}

.side-stack {
  display: grid;
  gap: 18px;
}

.uploader,
.ad-panel,
.status-panel,
.result-panel {
  padding: 24px;
}

.uploader,
.ad-panel,
.status-panel,
.result-panel {
  background: var(--panel-bg-strong);
  border-radius: 28px;
  box-shadow: var(--shadow-md);
}

.ad-panel {
  padding: 20px;
}

.ad-slot {
  display: grid;
  align-content: center;
  gap: 10px;
  min-height: 180px;
  padding: 18px;
  border-radius: 20px;
  border: 1.5px dashed rgba(95, 115, 142, 0.28);
  background:
    linear-gradient(180deg, rgba(247, 250, 255, 0.92), rgba(236, 242, 249, 0.82)),
    radial-gradient(circle at top right, rgba(99, 181, 255, 0.12), transparent 35%);
}

.ad-slot-label {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}

.ad-slot-size {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.65;
}

.section-head {
  margin-bottom: 16px;
}

.section-head h3 {
  font-size: clamp(24px, 2.8vw, 32px);
  color: var(--text);
}

.section-kicker {
  margin-top: 0;
  color: rgba(83, 102, 129, 0.68);
}

.upload-form {
  display: grid;
  gap: 14px;
}

.file-field {
  position: relative;
  display: grid;
  gap: 12px;
  min-height: 214px;
  padding: 22px;
  border-radius: 24px;
  border: 2px dashed rgba(110, 128, 153, 0.32);
  background: linear-gradient(180deg, rgba(250, 252, 255, 0.94), rgba(239, 244, 250, 0.82));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.file-field:hover,
.file-field.is-dragover {
  transform: translateY(-1px);
  border-color: rgba(82, 136, 255, 0.42);
  background: linear-gradient(180deg, rgba(247, 252, 255, 0.98), rgba(235, 244, 255, 0.9));
  box-shadow:
    inset 0 0 0 1px rgba(110, 177, 255, 0.18),
    0 12px 24px rgba(74, 92, 118, 0.08);
}

.file-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(190, 231, 255, 0.96), rgba(99, 181, 255, 0.92));
  color: #173760;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: 0 14px 24px rgba(73, 141, 227, 0.2);
}

.file-title {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  color: var(--text);
}

.file-subtitle,
.selection-meta,
.result-copy,
.progress-note {
  color: var(--text-soft);
  line-height: 1.72;
}

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

.file-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: var(--radius-pill);
  background: rgba(80, 102, 133, 0.08);
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 600;
}

input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.selection-card {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid var(--line-strong);
  background: rgba(239, 244, 250, 0.88);
}

.selection-card[data-empty="true"] {
  background: rgba(239, 244, 250, 0.72);
}

.selection-label {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.selection-summary {
  margin: 10px 0 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  word-break: break-word;
}

.selection-meta {
  margin: 8px 0 0;
}

.assist-field {
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid var(--line-strong);
  background: rgba(244, 248, 252, 0.86);
}

.assist-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.assist-input {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(102, 120, 148, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
  font: inherit;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.assist-input::placeholder {
  color: rgba(104, 120, 142, 0.78);
}

.assist-input:focus {
  border-color: rgba(82, 136, 255, 0.4);
  box-shadow: 0 0 0 4px rgba(99, 181, 255, 0.12);
  background: rgba(255, 255, 255, 0.96);
}

.assist-help {
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.6;
}

.primary-button,
.download-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  width: 100%;
  padding: 0 18px;
  border-radius: 18px;
  border: 1px solid transparent;
  font-size: 16px;
  font-weight: 700;
  font-family: inherit;
  text-decoration: none;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.primary-button {
  background: linear-gradient(135deg, #a6d8ff 0%, #5c84ff 100%);
  color: #12284d;
  box-shadow: 0 16px 28px rgba(72, 122, 224, 0.22);
  cursor: pointer;
}

.primary-button:hover,
.download-link:hover {
  transform: translateY(-1px);
}

.primary-button:disabled {
  opacity: 0.72;
  cursor: progress;
}

.flash-message {
  min-height: 24px;
  margin: 0;
  color: var(--text-soft);
}

.flash-message.is-error {
  color: var(--danger);
}

.flash-message.is-success {
  color: var(--success);
}

.progress-box {
  margin-bottom: 16px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(236, 242, 248, 0.88);
  border: 1px solid rgba(91, 109, 134, 0.08);
}

.progress-track {
  position: relative;
  height: 10px;
  border-radius: 999px;
  background: rgba(127, 146, 172, 0.18);
  overflow: hidden;
}

.progress-fill {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, #7ed9ff, #4c77ff);
  transition: width 180ms ease, background 180ms ease;
}

.progress-fill[data-state="processing"],
.progress-fill[data-state="uploaded"] {
  background: linear-gradient(135deg, #82dcff, #557eff);
}

.progress-fill[data-state="ready"] {
  background: linear-gradient(135deg, #62b08d, #298057);
}

.progress-fill[data-state="failed"] {
  background: linear-gradient(135deg, #d68e82, #b6574e);
}

.progress-note {
  margin: 12px 0 0;
}

.status-grid {
  display: grid;
  gap: 12px;
  margin: 0;
}

.status-grid div {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-soft);
}

.status-grid div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.status-grid dt {
  margin-bottom: 6px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.status-grid dd {
  margin: 0;
  line-height: 1.6;
  color: var(--text);
  word-break: break-word;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 700;
}

.status-badge.is-idle {
  background: rgba(88, 108, 136, 0.08);
  color: var(--text-soft);
  border-color: rgba(88, 108, 136, 0.08);
}

.status-badge.is-uploaded,
.status-badge.is-processing {
  background: var(--warning-soft);
  color: var(--warning);
  border-color: rgba(208, 152, 66, 0.18);
}

.status-badge.is-ready {
  background: var(--success-soft);
  color: var(--success);
  border-color: rgba(37, 114, 79, 0.18);
}

.status-badge.is-failed {
  background: var(--danger-soft);
  color: var(--danger);
  border-color: rgba(180, 86, 76, 0.18);
}

.mono {
  font-family: "Cascadia Code", "Consolas", monospace;
  font-size: 13px;
}

.result-panel {
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.result-panel[data-state="idle"] {
  background: rgba(247, 250, 255, 0.8);
}

.result-panel[data-state="processing"] {
  border-color: rgba(87, 140, 255, 0.16);
  background: rgba(244, 249, 255, 0.92);
}

.result-panel[data-state="ready"] {
  border-color: rgba(36, 115, 80, 0.22);
  background: rgba(244, 251, 247, 0.94);
  box-shadow: 0 18px 38px rgba(42, 91, 68, 0.14);
}

.result-panel[data-state="failed"] {
  border-color: rgba(180, 86, 76, 0.18);
  background: rgba(253, 246, 245, 0.94);
}

.result-body {
  display: grid;
  gap: 12px;
}

.result-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: rgba(70, 91, 122, 0.1);
  color: var(--text);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.result-title {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
}

.result-copy {
  margin: 0;
}

.result-actions {
  margin-top: 18px;
}

.download-link {
  background: linear-gradient(135deg, #a6d8ff 0%, #5c84ff 100%);
  color: #12284d;
  box-shadow: 0 14px 24px rgba(72, 122, 224, 0.18);
}

.download-link.is-disabled {
  pointer-events: none;
  background: rgba(93, 113, 140, 0.1);
  color: rgba(94, 110, 134, 0.74);
  border-color: rgba(93, 113, 140, 0.08);
  box-shadow: none;
}

@media (max-width: 1120px) {
  .tool-toolbar {
    align-items: start;
    flex-direction: column;
  }

  .tool-button-group {
    justify-content: start;
  }

  .hero,
  .workspace-grid {
    grid-template-columns: 1fr;
  }

  .hero-switch-head {
    align-items: start;
    flex-direction: column;
  }

  .workspace-head {
    align-items: start;
    flex-direction: column;
  }

  .workspace-summary {
    max-width: none;
  }
}

@media (max-width: 820px) {
  .tool-toolbar {
    padding: 18px;
  }

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

  .hero h1 {
    font-size: clamp(34px, 10vw, 52px);
  }

  .hero-card {
    padding: 18px;
  }

  .file-title {
    font-size: clamp(22px, 7vw, 30px);
  }
}

@media (max-width: 640px) {
  .shell {
    padding: 18px 14px 40px;
  }

  .tool-toolbar,
  .hero-card,
  .uploader,
  .status-panel,
  .result-panel {
    padding: 20px;
    border-radius: 24px;
  }

  .tool-card {
    padding: 18px;
    border-radius: 22px;
  }

  .tool-chip {
    width: 100%;
    justify-content: center;
  }

  .ad-slot {
    min-height: 140px;
  }

  .file-field {
    min-height: 190px;
    padding: 18px;
  }
}
