:root {
  --page-gutter: clamp(1.75rem, 6vw, 6rem);
  --content-max: min(1180px, 100%);
  --bg: #f0f4f8;
  --bg-accent: #e8f0fe;
  --surface: #ffffff;
  --text: #1a2332;
  --text-secondary: #5c6b7a;
  --accent: #2563eb;
  --accent-soft: #eff6ff;
  --accent-hover: #1d4ed8;
  --border: #e2e8f0;
  --border-strong: #cbd5e1;
  --danger: #dc2626;
  --danger-bg: #fef2f2;
  --ok: #059669;
  --ok-bg: #ecfdf5;
  --radius: 12px;
  --radius-lg: 16px;
  --shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08);
  --font: "SF Pro Text", "Segoe UI", "PingFang SC", "Microsoft YaHei", system-ui,
    sans-serif;
}

html {
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  width: 100%;
  font-family: var(--font);
  color: var(--text);
  line-height: 1.55;
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 100% 80% at 100% 0%, rgba(219, 234, 254, 0.7) 0%, transparent 50%),
    radial-gradient(ellipse 80% 60% at 0% 100%, rgba(224, 242, 254, 0.6) 0%, transparent 45%),
    linear-gradient(180deg, #f8fafc 0%, var(--bg) 40%, #eef2f6 100%);
  background-attachment: fixed;
}

.site-header {
  width: 100%;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  position: sticky;
  top: 0;
  z-index: 10;
}

.site-header-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.875rem max(calc(var(--page-gutter) + 1rem), env(safe-area-inset-left))
    0.875rem max(calc(var(--page-gutter) + 1rem), env(safe-area-inset-right));
}

.brand {
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-logo {
  display: block;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 7px;
  box-shadow: 0 1px 4px rgba(37, 99, 235, 0.22);
}

.brand-text {
  line-height: 1.2;
}

.site-header nav {
  display: flex;
  gap: 0.35rem;
}

.site-header nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  transition: color 0.15s ease, background 0.15s ease;
}

.site-header nav a:hover {
  color: var(--accent);
  background: var(--accent-soft);
}

.nav-icon {
  width: 0.92rem;
  height: 0.92rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.88;
}

.nav-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: 0.4rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.lang-icon {
  width: 0.95rem;
  height: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.78;
  margin-right: 0.08rem;
}

.lang-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.lang-item {
  text-decoration: none;
  color: var(--text-secondary);
  padding: 0.18rem 0.4rem;
  border-radius: 6px;
}

.lang-item:hover {
  color: var(--accent);
  background: var(--accent-soft);
}

.lang-item.active {
  color: var(--accent);
  background: var(--accent-soft);
  font-weight: 600;
}

.lang-sep {
  opacity: 0.55;
}

.container {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  box-sizing: border-box;
  padding: 4.5rem max(calc(var(--page-gutter) + 1rem), env(safe-area-inset-left))
    5.5rem max(calc(var(--page-gutter) + 1rem), env(safe-area-inset-right));
}

.page-head {
  margin-bottom: 2rem;
  max-width: 52rem;
}

.page-head h1 {
  margin-bottom: 0.5rem;
}

.page-sub {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 42rem;
}

.page-sub strong {
  color: var(--text);
  font-weight: 650;
}

h1 {
  font-size: 1.625rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  letter-spacing: -0.03em;
  color: var(--text);
}

.lead {
  color: var(--text-secondary);
  margin: 0 0 2rem;
  font-size: 1.0625rem;
  line-height: 1.6;
}

.hero {
  text-align: center;
  padding: 2rem 0 2.5rem;
}

.hero-text {
  margin-bottom: 1.75rem;
}

.hero .lead {
  max-width: 36rem;
  margin: 0.75rem auto 0;
  font-size: 1.08rem;
}

@media (min-width: 880px) {
  .hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 2rem 3.5rem;
    align-items: center;
    text-align: left;
    padding: 3rem 0 2.5rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-text {
    margin-bottom: 0;
  }

  .hero .lead {
    margin: 0.85rem 0 0;
    max-width: 38rem;
  }

  .hero .actions {
    justify-content: flex-start;
    flex-direction: column;
    align-items: stretch;
    min-width: 11rem;
  }

  .hero .actions .btn {
    text-align: center;
    width: 100%;
  }
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.35rem;
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 600;
  border: 1px solid var(--border);
  cursor: pointer;
  font-family: inherit;
  box-shadow: var(--shadow);
  transition: transform 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease,
    background 0.12s ease;
}

.btn:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn.primary {
  background: linear-gradient(180deg, #3b82f6 0%, var(--accent) 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.35);
}

.btn.primary:hover {
  background: linear-gradient(180deg, #2563eb 0%, var(--accent-hover) 100%);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
}

.form {
  width: 100%;
  padding: 2rem clamp(1.25rem, 3vw, 2.75rem);
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.form-grid {
  display: grid;
  gap: 1.35rem 1.75rem;
  width: 100%;
}

@media (min-width: 700px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }

  .form-span-full {
    grid-column: 1 / -1;
  }
}

.form-field {
  min-width: 0;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  padding-top: 0.25rem;
}

.form label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
}

.label-hint {
  display: block;
  font-weight: 500;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--text-secondary);
}

.field-extra {
  margin: 0.35rem 0 0;
  font-size: 0.8125rem;
}

.link-refresh {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.link-refresh:hover {
  text-decoration: underline;
}

.form input[type="text"],
.form input[type="number"],
.form input[type="file"] {
  padding: 0.7rem 0.9rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fafbfc;
  color: var(--text);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.form input[type="file"] {
  padding: 0.65rem;
  font-size: 0.9rem;
}

.form input[type="text"]:hover,
.form input[type="number"]:hover,
.form input[type="file"]:hover {
  border-color: var(--border-strong);
}

.form input:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--surface);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.upload-progress-wrap {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--border);
}

.upload-progress-title {
  margin: 0 0 0.6rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.upload-progress-bar {
  position: relative;
  height: 12px;
  border-radius: 999px;
  background: #e8edf3;
  overflow: hidden;
  border: 1px solid var(--border);
}

.upload-progress-fill {
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, #2563eb, #38bdf8);
  transition: width 0.12s ease-out;
}

.upload-progress-indeterminate {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(37, 99, 235, 0.35) 50%,
    transparent 100%
  );
  width: 40%;
  animation: upload-indeterminate 1.1s ease-in-out infinite;
}

@keyframes upload-indeterminate {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(320%);
  }
}

.upload-progress-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.45rem;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  font-variant-numeric: tabular-nums;
}

.form-download {
  padding: 1.75rem clamp(1.25rem, 3vw, 2.75rem);
}

.form-inline {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

@media (min-width: 560px) {
  .form-inline {
    flex-direction: row;
    align-items: flex-end;
    gap: 1rem 1.25rem;
  }

  .form-inline-field {
    flex: 1;
    min-width: 0;
  }

  .form-inline-btn {
    flex-shrink: 0;
  }
}

.form-inline-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
}

.hint {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-top: 1.75rem;
  line-height: 1.6;
  padding: 1rem 1.25rem;
  background: var(--accent-soft);
  border-radius: var(--radius);
  border: 1px solid rgba(37, 99, 235, 0.12);
  max-width: 52rem;
}

.msg {
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  font-size: 0.9375rem;
  line-height: 1.5;
}

.msg.error {
  background: var(--danger-bg);
  color: var(--danger);
  border: 1px solid rgba(220, 38, 38, 0.2);
}

.msg.ok {
  background: var(--ok-bg);
  color: var(--ok);
  border: 1px solid rgba(5, 150, 105, 0.2);
}

/* —— 信息面板（上传成功 / 下载预览） —— */
.info-panel {
  position: relative;
  width: 100%;
  margin: 0 0 1.5rem;
  padding: 0;
  border-radius: 20px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(248, 250, 252, 0.98) 45%,
    rgba(239, 246, 255, 0.55) 100%
  );
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 12px 40px -12px rgba(37, 99, 235, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  overflow: hidden;
}

.info-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2563eb, #38bdf8, #818cf8);
  opacity: 0.9;
}

.info-panel-head {
  padding: 1.35rem 1.5rem 1rem;
  padding-top: 1.6rem;
  border-bottom: 1px dashed rgba(148, 163, 184, 0.45);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0%, transparent 100%);
}

@media (min-width: 640px) {
  .info-panel-head {
    padding: 1.5rem 2rem 1.15rem;
    padding-top: 1.75rem;
  }
}

.info-panel-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #2563eb, #6366f1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.info-panel-title {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.info-summary {
  margin: 0;
  padding: 0.35rem 0 0.25rem;
}

.info-item {
  display: grid;
  grid-template-columns: minmax(0, 7.5rem) minmax(0, 1fr);
  gap: 0.65rem 1rem;
  align-items: start;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(226, 232, 240, 0.65);
}

.info-item:last-child {
  border-bottom: none;
}

@media (min-width: 640px) {
  .info-item {
    grid-template-columns: minmax(0, 8.5rem) minmax(0, 1fr);
    padding: 1.1rem 2rem;
    gap: 0.75rem 1.5rem;
  }
}

.info-item dt {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  padding-top: 0.2rem;
  font-size: 0.8125rem;
  font-weight: 650;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

.info-item dd {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text);
  word-break: break-word;
}

.info-item--hero {
  grid-template-columns: minmax(0, 7.5rem) minmax(0, 1fr);
  padding-top: 1.15rem;
  background: rgba(239, 246, 255, 0.35);
}

.info-item--hero dd {
  padding-bottom: 0.05rem;
}

.info-item--inline dd {
  display: flex;
  align-items: center;
}

.info-item--hash dd {
  min-width: 0;
}

.info-item--time dd {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.75rem;
}

.info-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.9);
}

.info-dot--key {
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.18);
}

.info-dot--file {
  background: linear-gradient(135deg, #64748b, #94a3b8);
  box-shadow: 0 0 0 3px rgba(100, 116, 139, 0.15);
}

.info-dot--size {
  background: linear-gradient(135deg, #059669, #34d399);
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.15);
}

.info-dot--hash {
  background: linear-gradient(135deg, #7c3aed, #a78bfa);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}

.info-dot--time {
  background: linear-gradient(135deg, #ea580c, #fb923c);
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.15);
}

.code-chip {
  display: inline-block;
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.25rem 0.5rem;
  border-radius: 8px;
  color: #1d4ed8;
  background: #eff6ff;
  border: 1px solid rgba(59, 130, 246, 0.28);
  box-shadow: none;
}

.value-em {
  font-weight: 600;
  font-size: 1.05rem;
  color: #0f172a;
}

.value-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.18rem 0.45rem;
  border-radius: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #047857;
  background: #ecfdf5;
  border: 1px solid rgba(16, 185, 129, 0.22);
}

.value-muted {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-secondary);
  font-style: italic;
}

/* Markdown 风格 inline code：灰底红字 */
.hash-md,
.hash-plain,
.hash-box {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0.4rem 0.55rem;
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 0.8125rem;
  line-height: 1.55;
  letter-spacing: 0.02em;
  word-break: break-all;
  color: #c7254e;
  background: #f6f8fa;
  border: 1px solid #e1e4e8;
  border-radius: 6px;
  font-weight: 500;
}

.info-dot--preview {
  background: linear-gradient(135deg, #7c3aed, #a78bfa);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}

.info-dot--link {
  background: linear-gradient(135deg, #0ea5e9, #38bdf8);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
}

.info-item--url dd {
  min-width: 0;
}

.url-link {
  font-size: 0.8125rem;
  line-height: 1.5;
  word-break: break-all;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(37, 99, 235, 0.25);
  transition: color 0.15s ease, border-color 0.15s ease;
}

.url-link:hover {
  color: var(--accent-hover);
  border-bottom-color: rgba(37, 99, 235, 0.45);
}

.time-main {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

.time-sub {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding: 0.15rem 0.5rem;
  background: rgba(241, 245, 249, 0.9);
  border-radius: 6px;
}

.time-hint {
  flex-basis: 100%;
  margin-top: 0.15rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.time-hint strong {
  color: #c2410c;
  font-weight: 700;
}

/* 兼容旧类名（若仍有引用） */
.code {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 0.2rem 0.45rem;
  border-radius: 6px;
}

.summary {
  display: grid;
  grid-template-columns: minmax(5rem, auto) minmax(0, 1fr);
  gap: 0.85rem 1.75rem;
  align-items: baseline;
  width: 100%;
  margin: 1.25rem 0;
  padding: 1.5rem clamp(1.25rem, 3vw, 2.5rem);
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

@media (min-width: 640px) {
  .summary {
    grid-template-columns: minmax(6.5rem, auto) minmax(0, 1fr);
    gap: 1rem 2rem;
    padding: 1.75rem 2.5rem;
  }
}

.summary dt {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  margin: 0;
}

.summary dd {
  margin: 0;
  font-size: 1rem;
  color: var(--text);
  word-break: break-word;
}

.hash-value {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 0.9rem;
  line-height: 1.45;
  word-break: break-all;
  letter-spacing: 0.02em;
}

.site-footer {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  box-sizing: border-box;
  text-align: center;
  padding: 2rem max(calc(var(--page-gutter) + 1rem), env(safe-area-inset-left)) 2.75rem
    max(calc(var(--page-gutter) + 1rem), env(safe-area-inset-right));
  padding-bottom: max(2.75rem, env(safe-area-inset-bottom));
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

.site-footer span {
  opacity: 0.9;
}

/* 成功页 / 信息页底部按钮行 */
.container > p:has(.btn) {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
  align-items: center;
}

.container > h1 + .msg {
  margin-top: 0.25rem;
}

.copy-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin: 1rem 0 0;
}

.btn-copy {
  border-style: dashed;
  border-color: rgba(37, 99, 235, 0.45);
  background: var(--accent-soft);
  color: var(--accent);
}

.btn-copy:hover {
  border-color: var(--accent);
  border-style: solid;
  color: var(--accent-hover);
}

.copy-feedback {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ok);
}

@media (max-width: 760px) {
  .site-header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.7rem 0.8rem;
    align-items: center;
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
  }

  .brand {
    min-width: 0;
    font-size: 1rem;
    gap: 0.45rem;
  }

  .brand-text {
    overflow-wrap: anywhere;
  }

  .site-header nav {
    grid-column: 1 / -1;
    order: 3;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
  }

  .site-header nav a {
    justify-content: center;
    padding: 0.58rem 0.7rem;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.8);
  }

  .lang-switch {
    margin-left: 0;
    justify-self: end;
    font-size: 0.8rem;
  }

  .container {
    padding-top: 1.8rem;
    padding-bottom: 2.8rem;
  }

  .form {
    padding: 1.15rem 1rem;
  }

  .form-download {
    padding: 1.1rem 1rem;
  }

  .form-actions .btn,
  .form-inline-btn,
  .container > p:has(.btn) .btn {
    width: 100%;
  }

  .upload-progress-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
  }

  .info-panel-head {
    padding: 1.2rem 1rem 0.9rem;
    padding-top: 1.4rem;
  }

  .info-item,
  .info-item--hero {
    grid-template-columns: 1fr;
    gap: 0.45rem;
    padding: 0.9rem 1rem;
  }

  .info-item dt {
    padding-top: 0;
  }
}

@media (max-width: 420px) {
  .brand {
    font-size: 0.95rem;
  }

  .lang-switch {
    font-size: 0.76rem;
  }

  .code-chip {
    font-size: 0.9rem;
  }
}
