:root {
  color-scheme: dark;
  --ink: #f3eee1;
  --muted: #a49b8a;
  --muted-strong: #c7bba7;
  --bg: #11100f;
  --panel: rgba(31, 29, 26, 0.92);
  --panel-light: #292621;
  --line: rgba(229, 212, 180, 0.16);
  --line-strong: rgba(229, 212, 180, 0.3);
  --gold: #d6ae65;
  --gold-light: #f2d493;
  --red: #b94c42;
  --red-light: #e08470;
  --green: #548b67;
  --green-light: #97d0a1;
  --yellow: #9b7a3c;
  --yellow-light: #e0bc70;
  font-family: "Segoe UI", "Noto Sans KR", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  background:
    radial-gradient(circle at 50% -10%, rgba(115, 87, 45, 0.2), transparent 36rem),
    linear-gradient(135deg, #171614 0%, var(--bg) 55%, #0b0b0a 100%);
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.32'/%3E%3C/svg%3E");
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.brand {
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.05em;
  text-decoration: none;
}

.icon-button,
.dialog-close {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--muted-strong);
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: transparent;
}

.icon-button:hover,
.dialog-close:hover {
  color: var(--ink);
  border-color: var(--gold);
}

.page-shell {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
  padding: 58px 0 70px;
}

.intro {
  max-width: 680px;
  margin: 0 auto 36px;
  text-align: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.intro h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(36px, 7vw, 64px);
  letter-spacing: -0.08em;
  line-height: 1;
}

.intro-copy {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  max-width: 820px;
  margin: 0 auto 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--line);
}

.stats-bar > div {
  padding: 14px 18px;
  background: rgba(25, 23, 21, 0.92);
  text-align: center;
}

.stat-label {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 13px;
}

.stats-bar strong {
  color: var(--gold-light);
  font-size: 22px;
}

.game-card,
.result-card {
  border: 1px solid var(--line-strong);
  background: var(--panel);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
}

.game-card {
  padding: clamp(20px, 4vw, 38px);
}

.game-card-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.heading-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.mode-button,
.secondary-button {
  padding: 9px 11px;
  color: var(--muted-strong);
  border: 1px solid var(--line-strong);
  background: transparent;
  font-size: 13px;
  font-weight: 700;
}

.mode-button:hover,
.secondary-button:hover {
  color: var(--gold-light);
  border-color: var(--gold);
}

.game-card h2,
.result-card h2,
.help-dialog h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(21px, 3vw, 30px);
  letter-spacing: -0.06em;
}

.status-stamp {
  padding: 7px 10px;
  color: var(--gold-light);
  border: 1px solid rgba(214, 174, 101, 0.5);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.status-stamp.closed {
  color: var(--green-light);
  border-color: rgba(151, 208, 161, 0.5);
}

.search-wrap {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid var(--line-strong);
  background: #171614;
}

.search-wrap:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(214, 174, 101, 0.09);
}

.search-mark {
  padding-left: 17px;
  color: var(--gold);
  font-size: 25px;
  line-height: 1;
}

#guessInput {
  min-width: 0;
  flex: 1;
  height: 54px;
  padding: 0 14px;
  color: var(--ink);
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 17px;
}

#guessInput::placeholder {
  color: #726b60;
}

.submit-button,
.primary-button {
  border: 0;
  color: #191612;
  background: var(--gold);
  font-weight: 800;
}

.submit-button {
  align-self: stretch;
  padding: 0 22px;
}

.submit-button:hover,
.primary-button:hover {
  background: var(--gold-light);
}

.suggestions {
  position: absolute;
  top: calc(100% + 5px);
  right: 0;
  left: 0;
  z-index: 5;
  display: none;
  max-height: 280px;
  margin: 0;
  padding: 4px;
  overflow-y: auto;
  overflow-x: auto;
  border: 1px solid var(--line-strong);
  background: #211f1c;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
  list-style: none;
}

.suggestions.visible {
  display: block;
}

.suggestion {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 11px 12px;
  color: var(--ink);
  border: 0;
  background: transparent;
  font-size: 16px;
  text-align: left;
}

.suggestion,
.suggestion-header {
  display: grid;
  grid-template-columns: minmax(190px, 1.7fr) minmax(85px, 0.75fr)
    minmax(90px, 0.8fr) minmax(140px, 1.2fr) minmax(150px, 1.35fr)
    minmax(85px, 0.75fr) minmax(85px, 0.75fr);
  min-width: 900px;
  align-items: center;
  gap: 0;
}

.suggestion > span,
.suggestion-header > span {
  min-width: 0;
  padding: 10px 8px;
  border-right: 1px solid var(--line);
  line-height: 1.35;
  text-align: center;
  overflow-wrap: anywhere;
}

.suggestion > span:last-child,
.suggestion-header > span:last-child {
  border-right: 0;
}

.suggestion-header {
  color: var(--gold-light);
  background: #2a261f;
  font-size: 12px;
  font-weight: 800;
}

.suggestion-header small {
  color: var(--gold);
  font-size: 10px;
  font-weight: 500;
}

.suggestion .suggestion-name {
  color: var(--ink);
  font-weight: 800;
  text-align: left;
}

.suggestion:hover,
.suggestion.active {
  background: #363128;
}

.suggestion small {
  color: var(--muted);
  font-size: 13px;
}

.form-message {
  min-height: 18px;
  margin: 8px 2px 0;
  color: var(--red-light);
  font-size: 14px;
}

.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 8px 0 18px;
  color: var(--muted);
  font-size: 13px;
}

.legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.legend-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 1px;
}

.legend-dot.exact {
  background: var(--green);
}

.legend-dot.partial {
  background: var(--yellow);
}

.legend-dot.wrong {
  background: var(--red);
}

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

.guess-table {
  width: 100%;
  min-width: 0;
  border-collapse: collapse;
  table-layout: fixed;
}

.guess-table th,
.guess-table td {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow-wrap: anywhere;
}

.guess-table th:last-child,
.guess-table td:last-child {
  border-right: 0;
}

.guess-table th {
  height: 56px;
  padding: 10px 8px;
  color: var(--muted-strong);
  background: #24211d;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}

.guess-table th small {
  color: var(--gold);
  font-size: 12px;
  font-weight: 500;
}

.guess-table td {
  height: 70px;
  padding: 7px;
  color: var(--ink);
  background: #1a1816;
  font-size: 17px;
  text-align: center;
  vertical-align: middle;
}

.guess-table tbody tr:last-child td {
  border-bottom: 0;
}

.guess-table th:first-child,
.guess-table td:first-child {
  width: 19%;
  text-align: center;
}

.guess-table th:nth-child(2),
.guess-table td:nth-child(2) {
  width: 11%;
}

.guess-table th:nth-child(3),
.guess-table td:nth-child(3) {
  width: 14%;
}

.guess-table th:nth-child(4),
.guess-table td:nth-child(4) {
  width: 20%;
}

.guess-table th:nth-child(5),
.guess-table td:nth-child(5) {
  width: 18%;
}

.guess-table th:nth-child(6),
.guess-table td:nth-child(6),
.guess-table th:nth-child(7),
.guess-table td:nth-child(7) {
  width: 9%;
}

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

.identity-name {
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
}

.identity-prefix,
.identity-sinner {
  display: block;
}

.identity-sinner {
  margin-top: 3px;
  color: var(--ink);
  font-size: inherit;
  font-weight: 700;
}

.result-cell {
  position: relative;
  padding: 5px 3px !important;
  font-weight: 700;
}

.result-cell.exact {
  color: var(--green-light);
  background: rgba(84, 139, 103, 0.35);
}

.result-cell.partial {
  color: var(--yellow-light);
  background: rgba(155, 122, 60, 0.35);
}

.result-cell.wrong {
  color: var(--red-light);
  background: rgba(185, 76, 66, 0.26);
}

.result-cell .tag-list {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  justify-content: center;
  align-items: center;
  justify-items: center;
  gap: 3px;
  margin: 0 auto;
  text-align: center;
  max-width: 100%;
}

.result-cell.affiliation-cell .tag-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(100%, 190px);
  justify-items: stretch;
}

.result-cell.keywords-cell .tag-list {
  grid-template-columns: repeat(3, max-content);
  width: 100%;
  justify-content: center;
  justify-items: center;
}

.result-cell.keywords-cell {
  text-align: center;
}

.result-cell .tag {
  display: inline-block;
  width: auto;
  max-width: 78px;
  min-width: 0;
  padding: 2px 4px;
  color: inherit;
  border: 1px solid currentColor;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  overflow-wrap: anywhere;
  word-break: keep-all;
}

.result-cell .arrow {
  margin-left: 3px;
  color: var(--gold-light);
  font-size: 14px;
}

.result-card {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 30px;
  margin-top: 24px;
  padding: 26px;
}

.result-copy {
  align-self: center;
}

.result-copy > p:not(.section-kicker) {
  margin: 10px 0 16px;
  color: var(--muted-strong);
  font-size: 16px;
  line-height: 1.6;
}

.answer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.answer-meta span {
  padding: 6px 8px;
  color: var(--muted-strong);
  border: 1px solid var(--line-strong);
  font-size: 13px;
}

.result-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.primary-button {
  padding: 11px 15px;
}

.secondary-button {
  padding: 10px 13px;
}

.countdown {
  color: var(--muted);
  font-size: 13px;
}

.answer-portrait {
  min-height: 205px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: #0e0d0c;
}

.portrait-placeholder {
  display: grid;
  place-items: center;
  height: 100%;
  min-height: 205px;
  color: var(--muted);
  background:
    linear-gradient(130deg, transparent 48%, rgba(214, 174, 101, 0.16) 49%, transparent 50%),
    linear-gradient(45deg, transparent 48%, rgba(214, 174, 101, 0.1) 49%, transparent 50%),
    #161411;
  text-align: center;
}

.portrait-placeholder span {
  display: block;
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.25em;
}

.portrait-placeholder strong {
  display: block;
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: 64px;
  line-height: 1;
}

#answerImage {
  display: none;
  width: 100%;
  height: 100%;
  min-height: 205px;
  object-fit: cover;
}

#answerImage.loaded {
  display: block;
}

#answerImage.loaded + .portrait-placeholder {
  display: none;
}

.source-note {
  margin: 22px 0 0;
  color: #6d665c;
  font-size: 13px;
  text-align: center;
}

.help-dialog {
  width: min(500px, calc(100% - 32px));
  padding: 30px;
  color: var(--ink);
  border: 1px solid var(--line-strong);
  background: #211f1c;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.6);
}

.help-dialog::backdrop {
  background: rgba(4, 4, 3, 0.75);
  backdrop-filter: blur(3px);
}

.dialog-close {
  position: absolute;
  top: 17px;
  right: 17px;
}

.help-dialog ol {
  margin: 22px 0;
  padding-left: 22px;
  color: var(--muted-strong);
  line-height: 1.9;
}

.help-key {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px;
  color: var(--muted);
  border: 1px solid var(--line);
  font-size: 14px;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  max-width: min(360px, calc(100% - 36px));
  padding: 12px 15px;
  color: var(--ink);
  border: 1px solid var(--line-strong);
  background: #292621;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  font-size: 14px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 160ms ease, transform 160ms ease;
  pointer-events: none;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.hidden,
.sr-only {
  display: none !important;
}

.tutorial-dialog {
  width: min(700px, calc(100% - 32px));
  padding: clamp(24px, 5vw, 42px);
  color: var(--ink);
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(135deg, rgba(214, 174, 101, 0.08), transparent 38%),
    #211f1c;
  box-shadow: 0 20px 90px rgba(0, 0, 0, 0.68);
}

.tutorial-dialog::backdrop {
  background: rgba(4, 4, 3, 0.82);
  backdrop-filter: blur(4px);
}

.tutorial-topline {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.tutorial-step {
  padding: 6px 8px;
  color: var(--gold-light);
  border: 1px solid rgba(214, 174, 101, 0.4);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.tutorial-dialog h2 {
  margin: 0;
  font-size: clamp(28px, 5vw, 40px);
  letter-spacing: -0.08em;
}

.tutorial-lead {
  margin: 12px 0 26px;
  color: var(--muted-strong);
  font-size: 19px;
  line-height: 1.6;
}

.tutorial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.tutorial-grid article {
  min-height: 150px;
  padding: 18px;
  background: rgba(26, 24, 22, 0.92);
}

.tutorial-number {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.tutorial-grid h3 {
  margin: 10px 0 7px;
  font-size: 19px;
}

.tutorial-grid p,
.tutorial-modes p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.tutorial-green {
  color: var(--green-light);
}

.tutorial-yellow {
  color: var(--yellow-light);
}

.tutorial-red {
  color: var(--red-light);
}

.tutorial-modes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.tutorial-clues {
  margin-top: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  background: rgba(25, 23, 21, 0.75);
}

.tutorial-clues .mode-label {
  color: var(--gold-light);
}

.tutorial-clues p {
  margin: 5px 0 0;
  color: var(--muted-strong);
  font-size: 16px;
  line-height: 1.7;
}

.tutorial-modes > div {
  padding: 14px;
  border: 1px solid var(--line);
  background: rgba(25, 23, 21, 0.75);
}

.tutorial-standard {
  margin: 14px 0 0;
  padding: 12px 14px;
  color: var(--muted-strong);
  border: 1px solid rgba(214, 174, 101, 0.28);
  background: rgba(214, 174, 101, 0.06);
  font-size: 13px;
  line-height: 1.6;
}

.tutorial-standard strong {
  color: var(--gold-light);
}

.mode-label {
  display: inline-block;
  margin-bottom: 7px;
  font-size: 15px;
  font-weight: 800;
}

.daily-label {
  color: var(--gold-light);
}

.practice-label {
  color: var(--green-light);
}

.tutorial-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
}

.tutorial-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}

.tutorial-check input {
  width: 16px;
  height: 16px;
  accent-color: var(--gold);
}

@media (max-width: 700px) {
  .site-header,
  .page-shell {
    width: min(100% - 24px, 1100px);
  }

  .page-shell {
    padding-top: 38px;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .game-card-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .heading-actions {
    justify-content: space-between;
  }

  .game-card h2 {
    font-size: 22px;
  }

  .game-card {
    padding: 20px 14px;
  }

  .table-wrap {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .guess-table th,
  .guess-table td {
    padding: 5px 3px;
    font-size: 11px;
  }

  .guess-table th {
    height: 48px;
    font-size: 10px;
  }

  .guess-table th small {
    font-size: 9px;
  }

  .guess-table td {
    min-height: 62px;
    height: auto;
  }

  .guess-table th:first-child,
  .guess-table td:first-child {
    width: 23%;
  }

  .guess-table th:nth-child(2),
  .guess-table td:nth-child(2) {
    width: 11%;
  }

  .guess-table th:nth-child(3),
  .guess-table td:nth-child(3) {
    width: 13%;
  }

  .guess-table th:nth-child(4),
  .guess-table td:nth-child(4) {
    width: 18%;
  }

  .guess-table th:nth-child(5),
  .guess-table td:nth-child(5) {
    width: 17%;
  }

  .guess-table th:nth-child(6),
  .guess-table td:nth-child(6),
  .guess-table th:nth-child(7),
  .guess-table td:nth-child(7) {
    width: 9%;
  }

  .identity-prefix,
  .identity-sinner {
    font-size: 11px;
    line-height: 1.25;
  }

  .identity-sinner {
    margin-top: 2px;
  }

  .result-cell .tag-list,
  .result-cell.affiliation-cell .tag-list,
  .result-cell.keywords-cell .tag-list {
    gap: 2px;
  }

  .result-cell.affiliation-cell .tag-list {
    width: 100%;
  }

  .result-cell.keywords-cell .tag-list {
    width: 100%;
  }

  .result-cell .tag {
    padding: 2px;
    font-size: 9px;
    line-height: 1.15;
  }

  .result-cell .arrow {
    font-size: 11px;
  }

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

  .suggestion-header {
    display: none;
  }

  .suggestions {
    max-height: min(62vh, 520px);
    padding: 6px;
  }

  .suggestion {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-width: 0;
    margin-bottom: 6px;
    padding: 9px;
    border: 1px solid var(--line);
    background: #292621;
    font-size: 14px;
  }

  .suggestion:last-child {
    margin-bottom: 0;
  }

  .suggestion > span {
    min-width: 0;
    padding: 7px 6px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    text-align: left;
  }

  .suggestion > span::before {
    display: block;
    margin-bottom: 2px;
    color: var(--gold);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.08em;
  }

  .suggestion .suggestion-name {
    grid-column: 1 / -1;
    padding-bottom: 9px;
    color: var(--gold-light);
    border-bottom: 1px solid var(--line-strong);
    font-size: 16px;
    text-align: center;
  }

  .suggestion .suggestion-name::before {
    display: none;
  }

  .suggestion-sinner::before {
    content: "수감자";
  }

  .suggestion-season::before {
    content: "시즌";
  }

  .suggestion-affiliation,
  .suggestion-keywords {
    grid-column: 1 / -1;
  }

  .suggestion-affiliation::before {
    content: "소속";
  }

  .suggestion-keywords::before {
    content: "사용 키워드";
  }

  .suggestion-sin::before {
    content: "죄악 속성 · 스킬 3";
  }

  .suggestion-attack::before {
    content: "공격 유형 · 스킬 3";
  }

  .suggestion > span:last-child,
  .suggestion > span:nth-last-child(2) {
    border-bottom: 0;
  }

  .suggestion:hover,
  .suggestion.active {
    background: #3a3429;
  }

  .tutorial-grid,
  .tutorial-modes {
    grid-template-columns: 1fr;
  }

  .tutorial-dialog {
    padding: 24px 20px;
  }

  .tutorial-dialog h2 {
    font-size: 30px;
  }

  .tutorial-lead {
    font-size: 17px;
  }

  .tutorial-grid h3 {
    font-size: 18px;
  }

  .tutorial-grid p,
  .tutorial-modes p,
  .tutorial-clues p {
    font-size: 15px;
  }

  .answer-portrait {
    min-height: 150px;
  }
}

@media (max-width: 430px) {
  .game-card {
    padding: 18px 12px;
  }

  .search-wrap {
    display: grid;
    grid-template-columns: 28px 1fr auto;
  }

  .search-mark {
    padding-left: 8px;
  }

  #guessInput {
    padding: 0 8px;
    font-size: 16px;
  }

  .submit-button {
    padding: 0 12px;
    font-size: 14px;
  }

  .suggestions {
    right: 0;
    left: -4px;
    max-width: calc(100vw - 24px);
  }

  .guess-table th,
  .guess-table td {
    font-size: 10px;
  }

  .guess-table th {
    font-size: 9px;
  }

  .identity-prefix,
  .identity-sinner {
    font-size: 10px;
  }

  .result-cell .tag {
    font-size: 8px;
  }
}
