:root {
  color-scheme: light;
  --bg: #f5f5f7;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-solid: #ffffff;
  --surface-raised: #fbfbfd;
  --ink: #1d1d1f;
  --secondary: #6e6e73;
  --tertiary: #a1a1a6;
  --line: rgba(0, 0, 0, 0.09);
  --line-strong: rgba(0, 0, 0, 0.16);
  --blue: #0071e3;
  --blue-soft: #e8f2ff;
  --action-fold: #8f8f95;
  --action-raise: #f59f00;
  --action-call: #19a974;
  --action-reraise: #e5484d;
  --green: #19a974;
  --red: #e5484d;
  --orange: #f59f00;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.10);
  --card-shadow: 0 24px 70px rgba(29, 29, 31, 0.16);
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  overflow: hidden;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(0, 113, 227, 0.10), transparent 32%),
    radial-gradient(circle at bottom right, rgba(52, 199, 89, 0.08), transparent 34%),
    var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", sans-serif;
  letter-spacing: 0;
}

[hidden] {
  display: none !important;
}

button,
input,
textarea {
  font: inherit;
}

button {
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  padding: 0 14px;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

button:hover {
  border-color: var(--line-strong);
  background: #fff;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.primary,
.tab.active,
.segment.active {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

input,
textarea {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  outline: none;
}

input:focus,
textarea:focus,
.dropzone:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.14);
}

.app-header {
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  padding: 10px 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(245, 245, 247, 0.78);
  backdrop-filter: blur(24px) saturate(1.8);
}

.app-header > div {
  flex: 0 0 auto;
}

.header-user {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-width: 0;
  color: var(--secondary);
  font-size: 12px;
  font-weight: 650;
}

.tab-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

.tab-count {
  min-width: 20px;
  height: 20px;
  margin-left: 5px;
  padding: 0 6px;
  background: rgba(0, 113, 227, 0.12);
  color: var(--blue);
}

.tab.active .tab-count {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.header-user span {
  max-width: min(220px, 24vw);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.header-user button {
  min-height: 30px;
  padding: 0 11px;
}

h1,
h2 {
  margin: 0;
  font-weight: 700;
}

h1 {
  font-size: 18px;
}

h2 {
  font-size: 17px;
}

.app-header p,
.dropzone p {
  margin: 2px 0 0;
  color: var(--secondary);
  font-size: 12px;
}

.tabs,
.segmented,
.share-actions,
.bottom-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tabs,
.segmented {
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
}

.tab,
.segment {
  min-height: 30px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

main {
  height: calc(100% - 66px);
  min-height: 0;
  padding: 14px;
}

.view {
  display: none;
  height: 100%;
  min-height: 0;
}

.view.active {
  display: grid;
}

.upload-view {
  grid-template-columns: minmax(260px, 29%) minmax(560px, 71%);
  gap: 14px;
}

.upload-panel,
.result-panel,
.review-sidebar,
.review-detail {
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px) saturate(1.5);
}

.upload-panel {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
}

.dropzone {
  margin: 12px;
  min-height: 136px;
  display: grid;
  gap: 12px;
  align-content: center;
  border: 1px dashed var(--line-strong);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.58);
  padding: 16px;
  animation: uploadPulse 2.4s ease-in-out infinite;
}

.dropzone.active {
  border-color: var(--blue);
  background: var(--blue-soft);
  animation: none;
}

.dropzone.busy {
  opacity: 0.72;
  pointer-events: none;
  animation: none;
}

@keyframes uploadPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 113, 227, 0.18);
    border-color: rgba(0, 113, 227, 0.26);
  }
  50% {
    box-shadow: 0 0 0 7px rgba(0, 113, 227, 0.05);
    border-color: rgba(0, 113, 227, 0.62);
  }
}

.dropzone strong {
  display: block;
  margin-top: 4px;
  font-size: 18px;
  line-height: 1.15;
}

.dropzone p {
  display: none;
}

.eyebrow {
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.image-list {
  min-height: 0;
  overflow: hidden;
  padding: 0 12px 12px;
  display: grid;
  gap: 10px;
  align-content: start;
}

.image-item {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.image-item img {
  display: block;
  width: 100%;
  max-height: 36vh;
  object-fit: contain;
  background: #f5f5f7;
}

.image-meta {
  min-height: 38px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  padding: 7px 9px;
}

.image-name,
.status,
.hand-date,
.hand-meta,
.hand-tags {
  color: var(--secondary);
}

.image-name,
.hand-title,
.hand-date,
.hand-meta {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.remove-image {
  min-height: 28px;
  color: var(--red);
}

.status {
  min-height: 36px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border-top: 1px solid var(--line);
  font-size: 12px;
}

.status.ok {
  color: #248a3d;
}

.status.error {
  color: var(--red);
}

.result-panel,
.review-detail {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
}

.result-toolbar {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border-bottom: 1px solid var(--line);
}

.visual-pane {
  min-height: 0;
  overflow: hidden;
  display: grid;
  justify-items: center;
  align-items: center;
  padding: 14px;
}

.txt-pane {
  min-height: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
}

#reviewTxtPane {
  grid-template-rows: minmax(0, 1fr);
}

.txt-toolbar {
  display: grid;
  grid-template-columns: minmax(180px, 1fr);
  gap: 8px;
  align-items: center;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
}

.txt-toolbar input {
  height: 34px;
  padding: 0 12px;
}

textarea {
  width: 100%;
  height: 100%;
  resize: none;
  border: 0;
  border-radius: 0;
  padding: 14px;
  line-height: 1.42;
  font-family: "SF Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  background: rgba(255, 255, 255, 0.76);
}

.bottom-actions {
  min-height: 58px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 10px 14px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.42);
}

.icon-button {
  width: 42px;
  min-width: 42px;
  height: 42px;
  min-height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  padding: 0;
  background: rgba(255, 255, 255, 0.82);
}

.icon-button:hover {
  transform: translateY(-1px);
}

.social-icon {
  width: 21px;
  height: 21px;
  display: inline-grid;
  place-items: center;
  color: var(--ink);
  font-weight: 800;
  line-height: 1;
}

.copy-icon {
  position: relative;
}

.copy-icon::before,
.copy-icon::after {
  content: "";
  position: absolute;
  width: 13px;
  height: 15px;
  border: 2px solid currentColor;
  border-radius: 4px;
}

.copy-icon::before {
  transform: translate(-3px, 3px);
  opacity: 0.38;
}

.copy-icon::after {
  transform: translate(3px, -3px);
  background: rgba(255, 255, 255, 0.82);
}

.x-icon {
  font-size: 17px;
}

.fb-button {
  border-color: transparent;
  background: #1877f2;
}

.fb-icon {
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 25px;
  font-weight: 800;
  transform: translateY(2px);
}

.hh-card {
  width: min(640px, 100%);
  max-height: none;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 28px;
  background: var(--surface-solid);
  box-shadow: var(--card-shadow);
  transform: scale(var(--hh-scale, 1));
  transform-origin: center;
  transition: transform 180ms ease;
}

.hh-card.empty {
  min-height: 320px;
  display: grid;
  place-items: center;
}

.empty-state {
  display: grid;
  gap: 6px;
  justify-items: center;
  color: var(--secondary);
  text-align: center;
  padding: 28px;
}

.empty-state strong {
  color: var(--ink);
  font-size: 21px;
}

.hh-top {
  padding: 15px 22px 12px;
  background: linear-gradient(180deg, #ffffff, #f8f8fa);
}

.hh-title {
  font-size: 20px;
  font-weight: 760;
  line-height: 1.12;
  text-transform: uppercase;
}

.hh-subtitle {
  margin-top: 5px;
  color: var(--secondary);
  font-size: 13px;
  font-weight: 600;
}

.seat-list {
  padding: 14px 22px;
  display: grid;
  gap: 8px;
  border-top: 1px solid var(--line);
  background: #fbfbfd;
}

.seat-row {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 82px 54px;
  gap: 10px;
  align-items: center;
  color: var(--secondary);
  font-size: 13px;
  font-weight: 650;
}

.seat-row.hero {
  font-weight: 780;
}

.seat-row.aggressor {
  color: var(--action-raise);
}

.seat-row.caller {
  color: var(--action-call);
}

.seat-row.hero.aggressor,
.seat-row.hero.caller {
  font-weight: 760;
}

.seat-stack,
.seat-bb {
  justify-self: end;
}

.seat-bb {
  color: var(--ink);
}

.street {
  padding: 13px 22px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.street:nth-of-type(even) {
  background: #fbfbfd;
}

.street-head {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
}

.street-title {
  margin: 0;
  font-size: 17px;
  font-weight: 760;
  text-transform: uppercase;
}

.street-meta {
  margin-top: 2px;
  color: var(--secondary);
  font-size: 12px;
  font-weight: 600;
}

.cards {
  display: inline-flex;
  gap: 4px;
  align-items: center;
}

.card {
  width: 30px;
  height: 38px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 7px;
  background: #1d1d1f;
  color: #fff;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.card-rank {
  font-size: 18px;
}

.card-suit {
  margin-top: 1px;
  font-size: 13px;
}

.card.spade {
  background: #1d1d1f;
}

.card.heart {
  background: #ff375f;
}

.card.diamond {
  background: #007aff;
}

.card.club {
  background: #34c759;
}

.street-action {
  margin-top: 9px;
  color: var(--secondary);
  font-size: 13px;
  font-weight: 590;
  line-height: 1.32;
}

.street + .street,
.showdown {
  border-top-width: 14px;
  border-top-color: #f5f5f7;
}

.action {
  color: var(--secondary);
}

.action strong {
  font-weight: 730;
}

.action-raise {
  color: var(--action-raise);
  font-weight: 710;
}

.action-bet {
  color: var(--action-raise);
  font-weight: 710;
}

.action-reraise {
  color: var(--action-reraise);
  font-weight: 720;
}

.action-call {
  color: var(--action-call);
  font-weight: 680;
}

.action-fold {
  color: var(--action-fold);
}

.action-check {
  color: #6e6e73;
}

.action em {
  display: inline-flex;
  min-height: 18px;
  align-items: center;
  margin-left: 4px;
  border-radius: 999px;
  background: rgba(0, 113, 227, 0.10);
  color: var(--blue);
  padding: 0 6px;
  font-size: 11px;
  font-style: normal;
  font-weight: 760;
}

.hero-action {
  color: var(--action-raise);
  font-weight: 780;
}

.showdown {
  padding: 14px 22px 16px;
  border-top: 1px solid var(--line);
  background: #f8f8fa;
}

.showdown h3 {
  margin: 0 0 12px;
  font-size: 15px;
}

.showdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.showdown-player {
  display: grid;
  gap: 5px;
  color: var(--secondary);
  font-size: 13px;
  font-weight: 630;
}

.showdown-player .winner {
  color: #248a3d;
}

.showdown-player .lost {
  color: var(--red);
}

.card-actions {
  display: none;
}

.review-view {
  grid-template-columns: minmax(300px, 32%) minmax(560px, 68%);
  gap: 14px;
}

.login-gate {
  grid-column: 1 / -1;
  min-height: 100%;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow);
  text-align: center;
  padding: 28px;
}

.login-gate h2 {
  margin-top: 6px;
  font-size: 28px;
}

.login-gate p {
  max-width: 480px;
  margin: 8px auto 0;
  color: var(--secondary);
  line-height: 1.45;
}

.google-signin {
  min-height: 42px;
  display: grid;
  place-items: center;
  color: var(--secondary);
  font-size: 13px;
}

.review-sidebar {
  display: grid;
  grid-template-rows: auto auto auto auto auto minmax(0, 1fr);
}

.review-head {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  border-bottom: 1px solid var(--line);
}

.tag-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
}

.review-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
}

.review-metrics div {
  min-width: 0;
  display: grid;
  gap: 3px;
  padding: 9px 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.58);
}

.review-metrics span {
  overflow: hidden;
  color: var(--secondary);
  font-size: 11px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.review-metrics strong {
  color: var(--text);
  font-size: 15px;
  font-weight: 780;
}

.player-search {
  display: grid;
  gap: 7px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  color: var(--secondary);
  font-size: 12px;
  font-weight: 700;
}

.player-search span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.player-search input {
  height: 34px;
  padding: 0 12px;
}

.privacy-actions {
  display: flex;
  gap: 8px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
}

.privacy-actions button {
  flex: 1;
  min-height: 32px;
  padding: 0 10px;
  color: var(--secondary);
  font-size: 12px;
  font-weight: 700;
}

#deleteAccountData {
  color: var(--red);
}

.info-button {
  width: 20px;
  min-width: 20px;
  min-height: 20px;
  height: 20px;
  padding: 0;
  border-color: var(--line-strong);
  color: var(--secondary);
  font-size: 12px;
  font-weight: 800;
}

.tag-chip {
  min-height: 30px;
  border-radius: 999px;
  padding: 0 11px;
  color: var(--secondary);
}

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

.hand-list {
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
}

.hand-item {
  width: 100%;
  min-height: 78px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 10px 10px 10px 14px;
}

.hand-select {
  min-width: 0;
  min-height: 58px;
  display: grid;
  gap: 5px;
  justify-items: stretch;
  border: 0;
  border-radius: 12px;
  background: transparent;
  padding: 4px 0;
  text-align: left;
  box-shadow: none;
  white-space: normal;
}

.hand-item.active,
.hand-item:hover {
  background: rgba(0, 113, 227, 0.08);
}

.hand-select:hover {
  background: transparent;
}

.reviewed-button {
  min-height: 30px;
  align-self: start;
  padding: 0 10px;
  color: var(--secondary);
  font-size: 12px;
}

.hand-item.reviewed-out {
  opacity: 0;
  transform: translateX(-16px) scale(0.98);
  transition: opacity 340ms ease, transform 340ms ease;
}

.hand-title {
  font-size: 14px;
  font-weight: 730;
}

.hand-date {
  font-size: 12px;
  font-weight: 650;
}

.hand-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  font-size: 11px;
}

.hand-tag {
  border-radius: 999px;
  background: var(--blue-soft);
  color: #0057b8;
  padding: 3px 7px;
}

.feedback-widget {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 30;
  display: grid;
  gap: 10px;
  justify-items: start;
}

.feedback-toggle {
  border-color: rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 30px rgba(29, 29, 31, 0.14);
}

.feedback-panel {
  width: min(340px, calc(100vw - 32px));
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 50px rgba(29, 29, 31, 0.16);
  backdrop-filter: blur(24px);
}

.feedback-kind,
.feedback-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.feedback-kind {
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(245, 245, 247, 0.7);
}

.feedback-kind .segment {
  flex: 1;
}

.feedback-panel textarea {
  min-height: 98px;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.feedback-actions {
  justify-content: flex-end;
}

.feedback-status {
  min-height: 18px;
  color: var(--secondary);
  font-size: 12px;
}

#cookieConsent {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1000;
  width: min(520px, calc(100vw - 36px));
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 180ms ease, transform 180ms ease;
}

#cookieConsent.cc-visible {
  opacity: 1;
  transform: translateY(0);
}

.cc-inner {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 50px rgba(29, 29, 31, 0.18);
  backdrop-filter: blur(24px);
}

.cc-text {
  margin: 0;
  color: var(--secondary);
  font-size: 13px;
  line-height: 1.35;
}

.cc-link {
  color: var(--blue);
  font-weight: 650;
}

.cc-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.cc-btn-accept {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

@media (max-width: 980px) {
  html,
  body {
    overflow: hidden;
  }

  .app-header,
  .result-toolbar {
    height: auto;
  }

  .app-header {
    min-height: 62px;
    gap: 10px;
    padding: 8px 10px;
  }

  .app-header p {
    display: none;
  }

  main {
    height: calc(100% - 62px);
    min-height: 0;
    padding: 10px;
  }

  .upload-view,
  .review-view {
    grid-template-columns: 1fr;
    height: 100%;
  }

  .upload-view {
    grid-template-rows: minmax(142px, 26%) minmax(0, 74%);
  }

  .upload-panel,
  .result-panel {
    min-height: 0;
  }

  .review-view {
    grid-template-rows: minmax(340px, 46%) minmax(0, 54%);
  }

  .review-sidebar,
  .review-detail {
    min-height: 0;
  }

  .review-head {
    min-height: 52px;
    padding: 8px 10px;
  }

  .review-head h2 {
    font-size: 15px;
  }

  .review-metrics {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    overflow-x: auto;
    padding: 7px 10px;
  }

  .review-metrics div {
    padding: 7px 8px;
  }

  .tag-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 7px 10px;
  }

  .tag-chip {
    min-height: 28px;
    padding: 0 9px;
  }

  .player-search {
    gap: 5px;
    padding: 8px 10px;
  }

  .player-search input {
    height: 30px;
  }

  .privacy-actions {
    padding: 7px 10px;
  }

  .privacy-actions button {
    min-height: 29px;
  }

  .dropzone {
    min-height: 104px;
    margin: 10px;
    padding: 12px;
  }

  .dropzone strong {
    font-size: 16px;
  }

  .image-list {
    display: none;
  }

  .result-toolbar,
  .bottom-actions {
    min-height: 46px;
    padding: 6px 10px;
  }

  .visual-pane {
    padding: 8px;
  }

  .hh-card {
    border-radius: 22px;
  }

  .seat-list {
    padding: 9px 12px;
    gap: 5px;
  }

  .seat-row {
    grid-template-columns: 42px minmax(0, 1fr) 58px 42px;
    gap: 5px;
    font-size: 11px;
  }

  .street {
    padding: 10px 12px;
  }

  .street-title {
    font-size: 14px;
  }

  .street-meta,
  .street-action {
    font-size: 11px;
  }

  .street-action {
    line-height: 1.22;
  }

  .card {
    width: 24px;
    height: 31px;
    border-radius: 6px;
    font-size: 17px;
  }

  .street + .street,
  .showdown {
    border-top-width: 8px;
  }

  .showdown {
    padding: 10px 12px 12px;
  }

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