:root {
  color-scheme: dark;
  --bg: #020711;
  --bg-deep: #01030a;
  --surface: #07111f;
  --surface-elevated: #0a1628;
  --surface-soft: #0f2137;
  --surface-glass: rgba(7, 17, 31, 0.86);
  --ink: #f4f8ff;
  --muted: #98a9c4;
  --muted-strong: #c9d7ed;
  --line: rgba(142, 188, 255, 0.16);
  --line-strong: rgba(32, 246, 255, 0.34);
  --cyan: #20f6ff;
  --blue: #2682ff;
  --violet: #9b4dff;
  --green: #38d996;
  --amber: #ffbe55;
  --red: #ff5c7a;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(32, 246, 255, 0.04);
  --glow-cyan: 0 0 28px rgba(32, 246, 255, 0.16);
  --glow-violet: 0 0 32px rgba(155, 77, 255, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--bg);
  overflow-x: hidden;
}

body {
  position: relative;
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 14% -8%, rgba(32, 246, 255, 0.18), transparent 34rem),
    radial-gradient(circle at 86% 4%, rgba(155, 77, 255, 0.16), transparent 36rem),
    radial-gradient(circle at 50% 115%, rgba(38, 130, 255, 0.12), transparent 32rem),
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg) 42%, #030613 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(32, 246, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(32, 246, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 18% 22%, rgba(32, 246, 255, 0.16), transparent 18rem),
    radial-gradient(circle at 82% 18%, rgba(155, 77, 255, 0.14), transparent 20rem);
  background-size: 56px 56px, 56px 56px, auto, auto;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.95), transparent 78%);
  opacity: 0.42;
}

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

.site-header,
#app,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px clamp(16px, 4vw, 42px);
  border-bottom: 1px solid var(--line);
  background: rgba(2, 7, 17, 0.88);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  color: var(--ink);
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: clamp(42px, 5vw, 56px);
  height: auto;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-lockup {
  display: grid;
  gap: 1px;
  line-height: 1;
}

.brand-name {
  width: max-content;
  background: linear-gradient(100deg, var(--cyan) 0%, var(--blue) 50%, var(--violet) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 1.2rem;
  font-weight: 850;
}

.brand-tagline {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
}

.site-nav::-webkit-scrollbar {
  display: none;
}

.site-nav a {
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--muted);
  padding: 8px 10px;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a.active,
.site-nav a:hover {
  border-color: rgba(32, 246, 255, 0.22);
  background: rgba(32, 246, 255, 0.08);
  color: var(--ink);
}

#app {
  min-height: calc(100vh - 128px);
}

.page-shell {
  display: grid;
  gap: 18px;
  min-width: 0;
  width: min(1220px, calc(100% - 28px));
  margin: 0 auto;
  padding: 18px 0 42px;
}

.page-head {
  position: relative;
  display: grid;
  gap: 9px;
  overflow: hidden;
  border: 1px solid rgba(142, 188, 255, 0.18);
  border-radius: 12px;
  background:
    radial-gradient(circle at 8% 16%, rgba(32, 246, 255, 0.11), transparent 18rem),
    radial-gradient(circle at 92% 8%, rgba(155, 77, 255, 0.12), transparent 20rem),
    linear-gradient(135deg, rgba(10, 22, 40, 0.94), rgba(5, 10, 24, 0.88));
  box-shadow: var(--shadow);
  padding: clamp(18px, 3vw, 28px);
}

.page-head::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 14px;
  width: 170px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--violet), transparent);
  opacity: 0.58;
}

.page-head > * {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.12;
}

h1 {
  max-width: 880px;
  color: var(--ink);
  font-size: clamp(1.72rem, 3vw, 2.72rem);
}

h2 {
  color: var(--ink);
  font-size: clamp(1.12rem, 2vw, 1.5rem);
}

h3 {
  color: var(--ink);
  font-size: 1rem;
}

p {
  margin: 0;
}

.lede {
  max-width: 790px;
  color: var(--muted-strong);
  font-size: 0.98rem;
}

.hero-proof-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 3px;
}

.hero-proof-points span {
  border: 1px solid rgba(32, 246, 255, 0.16);
  border-radius: 8px;
  background: rgba(32, 246, 255, 0.06);
  color: var(--muted-strong);
  font-size: 0.8rem;
  font-weight: 750;
  padding: 5px 8px;
}

.finder-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  gap: 18px;
  align-items: start;
}

.tool-panel,
.section-panel,
.empty-state,
.error-state,
.loading-state {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface-glass);
  box-shadow: var(--shadow);
}

.tool-panel {
  display: grid;
  gap: 12px;
  padding: 14px;
}

.filter-panel {
  align-self: start;
}

.filter-panel-head {
  display: grid;
  gap: 4px;
}

.form-grid {
  display: grid;
  gap: 10px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: var(--muted-strong);
  font-size: 0.86rem;
  font-weight: 750;
}

.field input,
.field select {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(3, 9, 20, 0.78);
  color: var(--ink);
  padding: 9px 10px;
  outline: none;
}

.field input:focus,
.field select:focus {
  border-color: var(--line-strong);
  box-shadow: 0 0 0 3px rgba(32, 246, 255, 0.1);
}

.range-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}

.range-row output {
  min-width: 42px;
  color: var(--muted-strong);
  font-variant-numeric: tabular-nums;
  text-align: right;
}

input[type="range"] {
  accent-color: var(--cyan);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 8px;
  cursor: pointer;
  line-height: 1.18;
  padding: 9px 14px;
  text-align: center;
  text-decoration: none;
}

.button {
  border: 1px solid rgba(32, 246, 255, 0.36);
  background: linear-gradient(135deg, var(--cyan), var(--blue) 58%, var(--violet));
  color: #020711;
  font-weight: 850;
  box-shadow: 0 10px 28px rgba(32, 246, 255, 0.14);
}

.button:hover {
  filter: saturate(1.08) brightness(1.04);
}

.secondary-button {
  border: 1px solid var(--line);
  background: rgba(10, 22, 40, 0.82);
  color: var(--ink);
}

.secondary-button:hover {
  border-color: rgba(32, 246, 255, 0.32);
  background: rgba(32, 246, 255, 0.07);
}

.section-panel {
  overflow: hidden;
}

.ranking-section,
.opportunity-section {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.ranking-section .section-header,
.opportunity-section .section-header {
  border: 0;
  padding: 0 0 12px;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}

.section-body {
  padding: 18px;
}

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

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

th,
td {
  padding: 12px 10px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

td {
  color: var(--muted-strong);
  font-size: 0.92rem;
}

tr:last-child td {
  border-bottom: 0;
}

.metric {
  font-variant-numeric: tabular-nums;
  overflow-wrap: anywhere;
}

.money,
.ratio,
.break-even {
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

.muted {
  color: var(--muted);
}

.strategy-link,
.game-link {
  color: var(--cyan);
  font-weight: 800;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.strategy-link:hover,
.game-link:hover {
  color: #7ffbff;
  text-decoration: underline;
}

.badge {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  min-height: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 5px 10px;
  background: rgba(15, 33, 55, 0.86);
  color: var(--muted-strong);
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.22;
  overflow-wrap: normal;
  white-space: nowrap;
  word-break: keep-all;
}

.badge.good {
  border-color: rgba(56, 217, 150, 0.34);
  background: rgba(56, 217, 150, 0.12);
  color: #7df0bd;
}

.badge.medium {
  border-color: rgba(255, 190, 85, 0.34);
  background: rgba(255, 190, 85, 0.12);
  color: #ffd08a;
}

.badge.high,
.badge.very-high,
.badge.low-confidence {
  border-color: rgba(255, 92, 122, 0.36);
  background: rgba(255, 92, 122, 0.13);
  color: #ff93a8;
}

.badge.info {
  border-color: rgba(32, 246, 255, 0.32);
  background: rgba(32, 246, 255, 0.1);
  color: #9ffcff;
}

.badge.warning {
  border-color: rgba(255, 190, 85, 0.34);
  background: rgba(255, 190, 85, 0.12);
  color: #ffd08a;
}

.ranking-card-grid,
.opportunity-grid {
  display: grid;
  gap: 14px;
}

.ranking-card-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
}

.opportunity-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
}

.ranking-card,
.opportunity-card {
  position: relative;
  display: grid;
  gap: 16px;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(7, 17, 31, 0.92);
  box-shadow: var(--shadow);
  padding: 18px;
}

.ranking-card {
  border-color: rgba(32, 246, 255, 0.2);
}

.ranking-card::before,
.opportunity-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  opacity: 0.72;
}

.ranking-card::before {
  background: linear-gradient(90deg, var(--cyan), var(--blue));
}

.opportunity-card::before {
  background: linear-gradient(90deg, var(--blue), var(--violet));
}

.ranking-card:hover,
.opportunity-card:hover {
  border-color: rgba(32, 246, 255, 0.34);
  box-shadow: var(--shadow), var(--glow-cyan);
}

.choice-strip,
.top-opportunity-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 480px) auto;
  gap: 16px;
  align-items: center;
  border: 1px solid rgba(32, 246, 255, 0.24);
  border-radius: 10px;
  background: rgba(7, 17, 31, 0.9);
  box-shadow: var(--shadow), var(--glow-cyan);
  padding: 14px 16px;
}

.top-opportunity-card {
  background:
    radial-gradient(circle at 6% 16%, rgba(32, 246, 255, 0.12), transparent 18rem),
    linear-gradient(135deg, rgba(7, 17, 31, 0.96), rgba(5, 10, 24, 0.94));
}

.choice-strip strong,
.top-opportunity-copy p {
  display: block;
  margin-top: 4px;
  overflow-wrap: anywhere;
}

.top-opportunity-copy {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.top-opportunity-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.choice-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.ranking-card-head,
.identity-row,
.card-badges,
.card-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.ranking-card-head {
  align-items: flex-start;
}

.identity-row,
.card-badges,
.signal-row {
  align-items: flex-start;
}

.ranking-card-head h3,
.opportunity-card h3 {
  margin-top: 2px;
  line-height: 1.22;
  overflow-wrap: break-word;
  word-break: normal;
}

.rank-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  min-width: 42px;
  height: 42px;
  border: 1px solid rgba(32, 246, 255, 0.3);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(32, 246, 255, 0.14), rgba(155, 77, 255, 0.14)),
    rgba(15, 33, 55, 0.92);
  color: var(--cyan);
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  box-shadow: inset 0 0 18px rgba(32, 246, 255, 0.08);
}

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

.card-badges,
.card-actions,
.identity-row,
.signal-row {
  flex-wrap: wrap;
}

.signal-row {
  display: flex;
  gap: 8px;
}

.card-actions {
  margin-top: 2px;
}

.updated-note {
  color: var(--muted);
  font-size: 0.82rem;
}

.watchlist-note {
  min-height: 3.1em;
  line-height: 1.42;
  overflow-wrap: break-word;
}

.sponsored-section {
  border-color: rgba(255, 190, 85, 0.28);
  background: rgba(255, 190, 85, 0.05);
}

.button.cta {
  gap: 8px;
  max-width: 100%;
  min-width: 0;
  white-space: nowrap;
}

.button.cta span {
  border-left: 1px solid rgba(2, 7, 17, 0.34);
  font-size: 0.78rem;
  font-weight: 750;
  min-width: 0;
  opacity: 0.92;
  overflow: hidden;
  padding-left: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

.summary-item,
.metric-item,
.contributor,
.method-item,
.game-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(10, 22, 40, 0.82);
  padding: 14px;
}

.summary-item span,
.metric-item span {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 850;
  line-height: 1.24;
  text-transform: uppercase;
}

.summary-item strong,
.metric-item strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: 1.05rem;
  font-variant-numeric: tabular-nums;
  line-height: 1.24;
  overflow-wrap: break-word;
  word-break: normal;
}

.choice-strip .summary-item,
.catalog-stat-grid .summary-item,
.ranking-card .metric-item {
  background: rgba(3, 9, 20, 0.5);
}

.catalog-stat-grid {
  border: 1px solid rgba(32, 246, 255, 0.18);
  border-radius: 10px;
  background: rgba(7, 17, 31, 0.72);
  box-shadow: var(--shadow);
  padding: 12px;
}

.ranking-card .metric-item:nth-child(2) strong,
.ranking-card .metric-item:nth-child(3) strong {
  color: #9ffcff;
}

.opportunity-card .metric-item strong {
  font-size: 0.98rem;
}

.opportunity-facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.alert {
  border: 1px solid rgba(255, 190, 85, 0.34);
  border-radius: 10px;
  background: rgba(255, 190, 85, 0.11);
  color: #ffe2ae;
  padding: 12px 14px;
}

.alert.danger {
  border-color: rgba(255, 92, 122, 0.36);
  background: rgba(255, 92, 122, 0.13);
  color: #ffb3c0;
}

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

.contributor-list,
.method-grid,
.game-grid,
.classification-grid {
  display: grid;
  gap: 12px;
}

.method-grid,
.game-grid,
.classification-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contributor {
  display: grid;
  gap: 4px;
}

.contributor strong {
  color: var(--ink);
}

.contributor small {
  color: var(--muted);
}

.contributor a {
  color: var(--cyan);
  overflow-wrap: anywhere;
}

.empty-state,
.error-state,
.loading-state {
  width: min(920px, calc(100% - 32px));
  margin: 42px auto;
  padding: 24px;
}

.error-state {
  border-color: rgba(255, 92, 122, 0.36);
  color: #ffb3c0;
}

.site-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: grid;
  gap: 8px;
  padding: 18px clamp(16px, 4vw, 42px);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
  color: var(--muted-strong);
}

.footer-links > * {
  min-width: 0;
}

.footer-links a {
  color: var(--cyan);
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
}

.footer-links a:hover {
  color: #7ffbff;
  text-decoration: underline;
}

.footer-links > * + *::before {
  content: "\00b7";
  color: var(--muted);
  margin-right: 12px;
}

.footer-link-disabled {
  color: var(--muted);
  white-space: nowrap;
}

.metric-note {
  color: var(--muted-strong);
  font-size: 0.86rem;
}

.analytics-consent {
  position: fixed;
  right: clamp(12px, 3vw, 28px);
  bottom: clamp(12px, 3vw, 28px);
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  width: min(720px, calc(100% - 24px));
  border: 1px solid rgba(32, 246, 255, 0.24);
  border-radius: 10px;
  background:
    radial-gradient(circle at 8% 20%, rgba(32, 246, 255, 0.12), transparent 18rem),
    rgba(7, 17, 31, 0.96);
  box-shadow: var(--shadow), var(--glow-cyan);
  color: var(--muted-strong);
  padding: 14px;
}

.analytics-consent strong {
  color: var(--ink);
}

.analytics-consent p {
  margin-top: 3px;
  font-size: 0.88rem;
}

.analytics-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

@media (max-width: 1024px) {
  .page-shell {
    width: min(100% - 24px, 980px);
  }

  .finder-grid {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 300px);
  }
}

@media (max-width: 900px) {
  .finder-grid,
  .choice-strip,
  .top-opportunity-card,
  .split-grid,
  .summary-grid,
  .catalog-stat-grid,
  .metric-grid,
  .method-grid,
  .game-grid,
  .classification-grid {
    grid-template-columns: 1fr;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    width: 100%;
  }

  .tool-panel {
    order: 2;
  }

  .top-opportunity-actions {
    justify-content: flex-start;
  }

  .card-metrics,
  .opportunity-facts {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 1.9rem;
  }
}

@media (max-width: 560px) {
  .page-shell {
    width: min(100% - 18px, 540px);
    padding-top: 12px;
  }

  .page-head {
    gap: 7px;
    padding: 16px;
  }

  .hero-proof-points {
    gap: 6px;
  }

  .hero-proof-points span {
    font-size: 0.74rem;
    padding: 4px 7px;
  }

  .choice-strip {
    gap: 10px;
    padding: 12px;
  }

  .top-opportunity-card {
    gap: 12px;
    padding: 13px;
  }

  .choice-metrics {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .summary-item,
  .metric-item,
  .contributor,
  .method-item,
  .game-card {
    padding: 11px;
  }

  .brand-tagline {
    font-size: 0.62rem;
  }

  .brand-logo {
    width: 40px;
  }

  .site-header {
    gap: 10px;
    padding: 11px 12px;
  }

  .site-nav a {
    padding: 7px 8px;
  }

  .site-nav {
    flex-wrap: wrap;
    overflow-x: visible;
  }

  h1 {
    font-size: 1.62rem;
  }

  .button,
  .secondary-button {
    justify-content: center;
    width: 100%;
  }

  .card-actions .badge {
    width: 100%;
    justify-content: center;
  }

  .analytics-consent {
    grid-template-columns: 1fr;
  }

  .analytics-consent-actions .button,
  .analytics-consent-actions .secondary-button {
    width: 100%;
  }
}

.operator-shell {
  max-width: 1280px;
}

.operator-head {
  border-color: rgba(32, 246, 255, 0.24);
}

.operator-table-wrap {
  overflow-x: auto;
}

.operator-table {
  border-collapse: collapse;
  min-width: 980px;
  width: 100%;
}

.operator-table th,
.operator-table td {
  border-bottom: 1px solid rgba(153, 178, 216, 0.14);
  padding: 10px;
  text-align: left;
  vertical-align: top;
}

.operator-table th {
  color: var(--muted);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.operator-form {
  display: grid;
  gap: 12px;
}

.operator-form .field {
  display: grid;
  gap: 6px;
}

.operator-form input,
.operator-form select,
.operator-form textarea {
  background: rgba(3, 10, 24, 0.88);
  border: 1px solid rgba(153, 178, 216, 0.22);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  padding: 10px 12px;
}

.operator-form textarea {
  min-height: 74px;
  resize: vertical;
}

.alert {
  background: rgba(255, 104, 104, 0.12);
  border: 1px solid rgba(255, 104, 104, 0.4);
  border-radius: 8px;
  color: #ffd7d7;
  padding: 10px 12px;
}
