:root {
  color-scheme: dark;
  --bg: #05070a;
  --surface: #0d1117;
  --surface-2: #111827;
  --glass: rgba(13, 17, 23, 0.74);
  --glass-strong: rgba(17, 24, 39, 0.88);
  --line: rgba(255, 255, 255, 0.11);
  --text: #e6edf3;
  --muted: #8b949e;
  --accent: #f7b731;
  --accent-2: #a55eea;
  --accent-glow: rgba(247, 183, 49, 0.38);
  --danger: #ff6b6b;
  --ok: #32d583;
  --info: #7dd3fc;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --transition: all 0.22s ease;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(247, 183, 49, 0.16), transparent 32rem),
    radial-gradient(circle at 85% 18%, rgba(165, 94, 234, 0.14), transparent 24rem),
    linear-gradient(rgba(247, 183, 49, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 183, 49, 0.035) 1px, transparent 1px),
    var(--bg);
  background-size: auto, auto, 50px 50px, 50px 50px, auto;
  color: var(--text);
  font-family: Inter, Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(5, 7, 10, 0.76));
  z-index: -1;
}

h1,
h2,
h3,
.brand {
  font-family: Orbitron, Inter, sans-serif;
  letter-spacing: 0;
}

a {
  color: var(--accent);
}

.top {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: 74px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 0 34px;
  background: var(--glass);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  color: var(--text);
  font-size: 22px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

nav {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

nav a {
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
}

nav a:hover {
  color: var(--accent);
}

nav a.nav-admin {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  background: var(--accent);
  color: #05070a;
  box-shadow: 0 0 18px var(--accent-glow);
}

main {
  width: min(1180px, calc(100% - 36px));
  margin: 34px auto 72px;
}

.site-footer {
  width: min(1180px, calc(100% - 36px));
  margin: -38px auto 34px;
  color: var(--muted);
}

.site-footer > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 28px;
  border: 1px solid var(--line);
  background: rgba(8, 12, 17, 0.78);
}

.footer-brand {
  color: var(--accent);
  font-family: Orbitron, Inter, sans-serif;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.site-footer span {
  text-align: right;
  line-height: 1.5;
}

.hero {
  min-height: 520px;
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--glass);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 58px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -40%;
  background-image:
    linear-gradient(rgba(247, 183, 49, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 183, 49, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  transform: perspective(520px) rotateX(58deg);
  animation: grid-move 24s linear infinite;
}

.hero::after {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, var(--accent-glow), transparent 70%);
  filter: blur(90px);
}

.hero > div {
  position: relative;
  z-index: 1;
}

.hero h1 {
  max-width: 900px;
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(38px, 6vw, 78px);
  font-weight: 900;
  line-height: 1.02;
  text-transform: uppercase;
}

.hero p {
  max-width: 700px;
  color: var(--muted);
  font-size: 19px;
}

.home-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.home-feature-card {
  display: flex;
  flex-direction: column;
  min-height: 190px;
  padding: 26px;
  border: 1px solid rgba(247, 183, 49, 0.28);
  background:
    linear-gradient(135deg, rgba(247, 183, 49, 0.08), transparent 42%),
    rgba(10, 15, 20, 0.82);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.home-feature-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(247, 183, 49, 0.72);
  background: rgba(247, 183, 49, 0.14);
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.38),
    0 0 22px rgba(247, 183, 49, 0.16);
}

.home-feature-card h2 {
  margin: 18px 0 12px;
  min-height: 58px;
  color: #ffffff;
  font-size: 23px;
  line-height: 1.2;
  text-transform: uppercase;
}

.home-feature-card p {
  margin: 0 0 24px;
  min-height: 106px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.home-feature-demo {
  position: relative;
  width: fit-content;
  margin-top: auto;
  outline: 0;
}

.demo-domain {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(247, 183, 49, 0.5);
  background: rgba(247, 183, 49, 0.1);
  color: var(--accent);
  font-family: Orbitron, Inter, sans-serif;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 0 20px rgba(247, 183, 49, 0.12);
  cursor: default;
}

.demo-popover {
  position: absolute;
  left: 0;
  bottom: calc(100% + 12px);
  z-index: 10;
  width: min(320px, calc(100vw - 56px));
  padding: 16px;
  border: 1px solid rgba(247, 183, 49, 0.55);
  background: rgba(7, 10, 13, 0.98);
  color: var(--muted);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.42), 0 0 24px rgba(247, 183, 49, 0.12);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.home-feature-demo:hover .demo-popover,
.home-feature-demo:focus-within .demo-popover,
.home-feature-demo:focus .demo-popover {
  opacity: 1;
  transform: translateY(0);
}

.demo-popover strong {
  display: block;
  margin-bottom: 10px;
  color: #ffffff;
  font-family: Orbitron, Inter, sans-serif;
  font-size: 15px;
  text-transform: uppercase;
}

.demo-popover span,
.demo-popover em {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  line-height: 1.5;
}

.demo-popover b {
  display: block;
  margin: 2px 0 8px;
  color: #ffffff;
  font-size: 14px;
}

.demo-popover .status {
  display: inline-flex;
  width: fit-content;
  margin: 2px 0 10px;
  padding: 5px 9px;
  background: rgba(126, 214, 255, 0.13);
  color: #7ed6ff;
  font-weight: 900;
}

.demo-popover i {
  display: block;
  width: 100%;
  height: 7px;
  margin-top: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.demo-popover i::before {
  content: "";
  display: block;
  width: 42%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  box-shadow: 0 0 18px rgba(247, 183, 49, 0.35);
  animation: demo-progress 1.4s ease-in-out infinite alternate;
}

.home-feature-demo-api .demo-popover {
  width: min(390px, calc(100vw - 56px));
  margin: 0;
  white-space: pre-wrap;
  color: #d9e2ec;
  font-size: 12px;
  line-height: 1.55;
}

.home-feature-demo-api code {
  color: #d9e2ec;
}

@keyframes demo-progress {
  from { transform: translateX(0); }
  to { transform: translateX(140%); }
}

@keyframes grid-move {
  from { background-position: 0 0; }
  to { background-position: 0 960px; }
}

.actions,
.domain-form,
.search-form,
.filter-form {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.button,
button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 22px;
  border: 1px solid rgba(247, 183, 49, 0.86);
  border-radius: 4px;
  background: linear-gradient(180deg, #ffc94a 0%, var(--accent) 100%);
  color: #05070a;
  font: 800 13px Inter, sans-serif;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 10px 26px rgba(247, 183, 49, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.34);
  white-space: nowrap;
}

.button:hover,
button:hover {
  transform: translateY(-1px);
  border-color: #ffe08a;
  box-shadow: 0 14px 34px rgba(247, 183, 49, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.button:active,
button:active {
  transform: translateY(0);
  box-shadow: 0 6px 18px rgba(247, 183, 49, 0.2);
}

.button:focus-visible,
button:focus-visible {
  outline: 2px solid rgba(247, 183, 49, 0.72);
  outline-offset: 3px;
}

.button.ghost {
  background: transparent;
  color: var(--accent);
  box-shadow: none;
}

.button.ghost:hover {
  background: rgba(247, 183, 49, 0.08);
  box-shadow: 0 0 22px rgba(247, 183, 49, 0.12);
}

.panel {
  background: var(--glass);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  padding: 28px;
  margin-bottom: 22px;
}

.panel.narrow {
  max-width: 520px;
  margin: 54px auto;
}

.admin-user-panel {
  max-width: 760px;
  margin: 54px auto;
}

.admin-user-panel .form {
  max-width: none;
}

.panel h1,
.panel h2 {
  margin-top: 0;
  color: #ffffff;
  text-transform: uppercase;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 18px;
}

.section-head h1,
.section-head h2 {
  margin-bottom: 0;
}

.dashboard-head {
  align-items: center;
}

.plan-glow {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  max-width: min(50vw, 360px);
  padding: 0 14px;
  border: 1px solid currentColor;
  background: rgba(255, 255, 255, 0.035);
  font-family: Orbitron, Inter, sans-serif;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.plan-glow.default {
  color: var(--accent);
  box-shadow: 0 0 14px rgba(247, 183, 49, 0.28), inset 0 0 18px rgba(247, 183, 49, 0.08);
  text-shadow: 0 0 12px rgba(247, 183, 49, 0.72);
}

.plan-glow.premium {
  color: var(--ok);
  box-shadow: 0 0 14px rgba(50, 213, 131, 0.3), inset 0 0 18px rgba(50, 213, 131, 0.08);
  text-shadow: 0 0 12px rgba(50, 213, 131, 0.78);
}

.form {
  display: grid;
  gap: 16px;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: var(--line);
}

.oauth-buttons {
  display: grid;
  gap: 10px;
}

.oauth-auth-button {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-weight: 900;
  text-decoration: none;
  transition: var(--transition);
}

.oauth-auth-button:hover {
  border-color: rgba(247, 183, 49, 0.7);
  box-shadow: 0 12px 32px rgba(247, 183, 49, 0.15);
}

.google-auth-mark,
.github-auth-mark {
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  color: #1a73e8;
  font: 900 15px/1 Arial, sans-serif;
}

.github-auth-button {
  background: rgba(255, 255, 255, 0.075);
}

.github-auth-mark {
  background: #0d1117;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #ffffff;
  font-size: 10px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 800;
}

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

.field-label {
  color: var(--muted);
  font-weight: 800;
}

.captcha-field {
  position: relative;
  gap: 10px;
  margin-top: 8px;
}

.captcha-legend {
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  background: transparent;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
  text-shadow:
    0 -1px 0 #080b0f,
    1px 0 0 #080b0f,
    0 1px 0 #080b0f,
    -1px 0 0 #080b0f,
    0 -2px 2px #080b0f,
    2px 0 2px #080b0f,
    0 2px 2px #080b0f,
    -2px 0 2px #080b0f,
    0 0 12px rgba(247, 183, 49, 0.32);
  pointer-events: none;
}

.captcha-word {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(247, 183, 49, 0.45);
  background:
    linear-gradient(90deg, rgba(247, 183, 49, 0.08), rgba(247, 183, 49, 0.18), rgba(247, 183, 49, 0.08)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0 6px, transparent 6px 12px);
  color: var(--accent);
  font-family: var(--mono);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: lowercase;
  text-shadow: 0 0 16px rgba(247, 183, 49, 0.45);
  box-shadow: inset 0 0 28px rgba(247, 183, 49, 0.06), 0 0 24px rgba(247, 183, 49, 0.12);
  cursor: default;
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

.setting-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
}

.help-tip {
  position: relative;
  width: 19px;
  height: 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(247, 183, 49, 0.55);
  border-radius: 50%;
  color: var(--accent);
  background: rgba(247, 183, 49, 0.08);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  cursor: help;
}

.help-tip-alert {
  border-color: rgba(255, 199, 64, 0.78);
  background: rgba(247, 183, 49, 0.13);
}

.help-bubble {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  z-index: 20;
  width: min(520px, calc(100vw - 48px));
  padding: 12px 13px;
  border: 1px solid rgba(247, 183, 49, 0.38);
  background: rgba(13, 17, 23, 0.98);
  color: var(--text);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
  font: 600 13px/1.45 Inter, sans-serif;
  text-transform: none;
  white-space: normal;
  transform: translate(-50%, 6px);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.help-bubble::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 10px;
  height: 10px;
  background: rgba(13, 17, 23, 0.98);
  border-right: 1px solid rgba(247, 183, 49, 0.38);
  border-bottom: 1px solid rgba(247, 183, 49, 0.38);
  transform: translate(-50%, -5px) rotate(45deg);
}

.help-tip:hover .help-bubble,
.help-tip:focus .help-bubble,
.help-tip:focus-within .help-bubble {
  opacity: 1;
  transform: translate(-50%, 0);
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 0 13px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  font: inherit;
  outline: none;
  transition: var(--transition);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(247, 183, 49, 0.12);
}

input[readonly] {
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
  cursor: default;
}

.api-key-field input {
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: 14px;
  letter-spacing: 0;
  overflow-x: auto;
  text-overflow: clip;
  white-space: nowrap;
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: var(--text);
}

.checkbox-row input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--accent);
}

.form-note {
  margin: -8px 0 0;
}

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

.admin-user-meta span {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  padding: 12px;
  color: var(--muted);
  font-weight: 800;
}

.admin-user-meta strong {
  color: var(--text);
}

textarea {
  min-height: 120px;
  padding-top: 12px;
  resize: vertical;
}

.rich-editor {
  display: grid;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.rich-editor:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(247, 183, 49, 0.12);
}

.rich-editor-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 8px;
  border-bottom: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.18);
}

.rich-editor-button {
  min-height: 32px;
  padding: 0 10px;
  border-color: rgba(247, 183, 49, 0.32);
  background: rgba(247, 183, 49, 0.08);
  color: var(--accent);
  box-shadow: none;
  font-size: 12px;
}

.rich-editor-button:hover {
  box-shadow: 0 0 14px rgba(247, 183, 49, 0.18);
}

.rich-editor-area {
  min-height: 150px;
  padding: 14px;
  color: var(--text);
  line-height: 1.65;
  outline: none;
}

.rich-editor-area:empty::before {
  content: attr(data-placeholder);
  color: var(--muted);
}

.rich-editor-source {
  display: none;
}

select option {
  background: var(--surface);
  color: var(--text);
}

.domain-form.js-submit-check {
  display: grid;
  grid-template-columns: minmax(260px, 480px) auto minmax(160px, 240px);
  align-items: center;
  max-width: 840px;
}

.domain-form.js-submit-check input {
  max-width: none;
}

.result-panel .domain-form {
  margin-top: 18px;
}

.result-panel .domain-form .button,
.result-panel .domain-form button {
  min-width: 172px;
}

.domain-form.is-submitting input {
  opacity: 0.66;
  pointer-events: none;
}

.domain-form.is-submitting button {
  pointer-events: none;
  opacity: 0.86;
}

.submit-loader {
  display: none;
  width: min(260px, 100%);
  height: 9px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
}

.submit-loader span {
  display: block;
  width: 42%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  animation: submit-scan 1s linear infinite;
}

.domain-form.is-submitting .submit-loader {
  display: block;
}

.submit-status {
  display: none;
  margin: 14px 0 0;
  color: var(--accent);
  font-weight: 800;
}

.panel:has(.domain-form.is-submitting) .submit-status {
  display: block;
}

@keyframes submit-scan {
  from { transform: translateX(-110%); }
  to { transform: translateX(260%); }
}

.search-form {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  justify-content: stretch;
  align-items: center;
  width: min(490px, 100%);
  margin-left: auto;
}

.search-form input {
  min-width: 0;
}

.filter-form {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(180px, 220px) minmax(180px, 220px) auto auto;
  align-items: stretch;
  gap: 10px;
  margin: 22px 0 18px;
  padding: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.filter-form input {
  min-width: 0;
  width: 100%;
  flex: none;
}

.filter-form select {
  width: 100%;
  min-width: 0;
}

.filter-form .button,
.filter-form button {
  width: 100%;
  white-space: nowrap;
}

code {
  background: rgba(255, 255, 255, 0.07);
  color: var(--accent);
  padding: 2px 6px;
  word-break: break-word;
}

.api-card-label {
  color: var(--text);
}

.api-card-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.api-mode-tip .help-bubble {
  width: min(560px, calc(100vw - 48px));
}

.api-mode-status-line {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
  color: var(--text);
}

.api-mode-badge {
  display: inline-block;
  width: fit-content;
  padding: 2px 8px;
  border: 1px solid currentColor;
  background: rgba(255, 255, 255, 0.04);
  text-transform: uppercase;
  font: 900 12px/1.4 Orbitron, Inter, sans-serif;
}

.api-mode-default {
  color: #ff6b73;
}

.api-mode-super {
  color: #29e890;
}

pre {
  overflow-x: auto;
  padding: 16px;
  background: #030507;
  border: 1px solid var(--line);
  color: #f8fafc;
}

pre code {
  background: transparent;
  color: inherit;
  padding: 0;
}

.flash {
  padding: 13px 15px;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  font-weight: 800;
}

.flash.error {
  color: var(--danger);
  background: rgba(255, 107, 107, 0.09);
  border-color: rgba(255, 107, 107, 0.35);
}

.flash.ok {
  color: var(--ok);
  background: rgba(50, 213, 131, 0.08);
  border-color: rgba(50, 213, 131, 0.32);
}

.empty-history-note {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding: 17px 18px;
  border: 1px solid rgba(247, 183, 49, 0.36);
  background:
    linear-gradient(90deg, rgba(247, 183, 49, 0.11), rgba(255, 255, 255, 0.025) 42%),
    rgba(255, 255, 255, 0.025);
}

.pending-history-note {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding: 17px 18px;
  border: 1px solid rgba(120, 214, 255, 0.38);
  background:
    linear-gradient(90deg, rgba(120, 214, 255, 0.10), rgba(255, 255, 255, 0.025) 42%),
    rgba(255, 255, 255, 0.025);
}

.empty-history-note strong {
  color: var(--accent);
  font-family: Orbitron, Inter, sans-serif;
  font-size: 18px;
}

.pending-history-note strong {
  color: var(--info);
  font-family: Orbitron, Inter, sans-serif;
  font-size: 18px;
}

.empty-history-note span,
.pending-history-note span {
  display: block;
  color: var(--muted);
  max-width: 820px;
  line-height: 1.55;
}

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

table {
  width: 100%;
  border-collapse: collapse;
}

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

th {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.th-label-with-tip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.th-label-with-tip .help-tip {
  width: 17px;
  height: 17px;
  font-size: 11px;
}

.th-label-with-tip .help-bubble {
  top: calc(100% + 10px);
  bottom: auto;
  width: min(360px, calc(100vw - 48px));
  text-align: left;
}

.th-label-with-tip .help-bubble::after {
  top: auto;
  bottom: 100%;
  border-right: 0;
  border-bottom: 0;
  border-left: 1px solid rgba(247, 183, 49, 0.38);
  border-top: 1px solid rgba(247, 183, 49, 0.38);
  transform: translate(-50%, 5px) rotate(45deg);
}

.templates-table {
  table-layout: fixed;
  min-width: 920px;
}

.templates-table th,
.templates-table td {
  vertical-align: top;
}

.templates-table th {
  white-space: nowrap;
}

.templates-table th:nth-child(1),
.templates-table td:nth-child(1),
.templates-table th:nth-child(3),
.templates-table td:nth-child(3) {
  width: 15%;
}

.templates-table th:nth-child(2),
.templates-table td:nth-child(2),
.templates-table th:nth-child(4),
.templates-table td:nth-child(4) {
  width: 31%;
}

.templates-table th:nth-child(5),
.templates-table td:nth-child(5) {
  width: 112px;
  text-align: right;
}

.templates-table td {
  overflow-wrap: anywhere;
}

tr:hover td {
  background: rgba(255, 255, 255, 0.025);
}

.badge {
  display: inline-flex;
  padding: 4px 9px;
  background: rgba(125, 211, 252, 0.1);
  color: var(--info);
  font-weight: 900;
}

.badge.good,
.good {
  color: var(--ok);
}

.badge.spam,
.spam {
  color: var(--danger);
}

.badge.pending,
.badge.queued,
.badge.processing,
.pending {
  color: var(--info);
}

.badge.unknown,
.unknown {
  color: var(--muted);
}

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

.checks-cell {
  text-align: center;
}

.count-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  padding: 0 10px;
  border: 1px solid rgba(247, 183, 49, 0.22);
  background: rgba(247, 183, 49, 0.07);
  color: var(--text);
  font-weight: 900;
  box-shadow: inset 0 0 18px rgba(247, 183, 49, 0.04);
}

.history {
  min-width: 340px;
}

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

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

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

.pagination {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 20px;
}

.summary {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.summary div {
  display: grid;
  gap: 6px;
}

.summary span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.summary strong {
  font-size: 18px;
}

.admin-domain-summary {
  margin: 16px 0 8px;
}

.admin-domain-stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0 20px;
}

.admin-domain-stats div {
  min-height: 96px;
  padding: 17px 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
}

.admin-domain-stats span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.admin-domain-stats strong {
  color: var(--accent);
  font-family: Orbitron, Inter, sans-serif;
  font-size: 26px;
}

.admin-mass-action {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: -4px 0 20px;
  padding: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.admin-mass-action .button {
  flex: 0 0 auto;
}

.admin-mass-action .muted {
  max-width: 760px;
  font-size: 14px;
  line-height: 1.5;
}

.confirm-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(0, 0, 0, 0.74);
  backdrop-filter: blur(7px);
}

.confirm-dialog {
  width: min(560px, 100%);
  border: 1px solid rgba(255, 191, 43, 0.45);
  background:
    linear-gradient(145deg, rgba(255, 191, 43, 0.08), rgba(109, 210, 255, 0.03)),
    var(--panel);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55), 0 0 34px rgba(255, 191, 43, 0.16);
  padding: 28px;
}

.confirm-dialog h2 {
  margin: 0 0 14px;
  color: var(--text);
  font-family: Orbitron, Inter, sans-serif;
  font-size: clamp(22px, 3vw, 30px);
  text-transform: uppercase;
}

.confirm-dialog p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.confirm-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 24px;
}

.mini {
  margin-top: 5px;
  font-size: 12px;
}

.mini-button {
  min-height: 34px;
  padding: 0 12px;
  font-size: 12px;
}

.plan-users-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  min-width: 46px;
  border: 1px solid rgba(255, 191, 43, 0.35);
  background: rgba(255, 191, 43, 0.12);
  color: var(--text);
  font-weight: 900;
}

.checkbox-row.compact {
  margin: 0;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 20px 0;
}

.stats div {
  border: 1px solid var(--line);
  padding: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.stats span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.stats strong {
  color: var(--accent);
  font-family: Orbitron, Inter, sans-serif;
  font-size: 28px;
}

.cron-console {
  margin-top: 28px;
  border: 1px solid rgba(247, 183, 49, 0.22);
  background:
    linear-gradient(135deg, rgba(247, 183, 49, 0.055), rgba(109, 210, 255, 0.025)),
    rgba(255, 255, 255, 0.025);
  box-shadow: inset 3px 0 0 rgba(247, 183, 49, 0.7), 0 18px 46px rgba(0, 0, 0, 0.18);
  padding: 22px 24px 24px;
}

.cron-console .section-head {
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}

.cron-console .section-head .muted {
  max-width: 620px;
  line-height: 1.45;
  text-align: right;
}

.cron-console h2 {
  margin-bottom: 0;
  font-size: 25px;
}

.cron-console-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.cron-console-grid div {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
  min-height: 92px;
  padding: 16px 16px 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cron-console-grid span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.cron-console-grid strong {
  color: var(--text);
  font-family: Orbitron, Inter, sans-serif;
  font-size: 17px;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.cron-console-grid div:nth-child(1) strong,
.cron-console-grid div:nth-child(2) strong {
  color: #ffffff;
}

.cron-console-grid div:nth-child(n+3) strong {
  color: var(--accent);
  text-shadow: 0 0 18px rgba(247, 183, 49, 0.2);
}

.compare-stats {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.stat-compare-card {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.stat-compare-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.stat-compare-card strong {
  color: var(--text);
}

.stat-compare-card small {
  font-weight: 900;
}

.stat-compare-card small.up {
  color: var(--ok);
}

.stat-compare-card small.down {
  color: #ff6b6b;
}

.stat-compare-card small.flat,
.stat-compare-card em {
  color: var(--muted);
}

.stat-compare-card em {
  font-style: normal;
  font-size: 12px;
}

.stats-filter-form .actions {
  margin-top: 6px;
}

.stats-snapshot-panel {
  padding: 18px 22px;
}

.stats-snapshot-note {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-weight: 900;
}

.stats-snapshot-note strong {
  color: var(--accent);
  font-family: Orbitron, Inter, sans-serif;
}

.stats-period-field {
  position: relative;
  gap: 9px;
  padding: 12px 12px 12px 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.stats-period-field::before {
  content: "";
  position: absolute;
  inset: -1px auto -1px -1px;
  width: 4px;
}

.stats-period-field span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.stats-period-field span::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
}

.primary-period-field {
  border-color: rgba(247, 183, 49, 0.34);
  background: linear-gradient(90deg, rgba(247, 183, 49, 0.07), rgba(255, 255, 255, 0.025) 46%);
}

.primary-period-field::before,
.primary-period-field span::before {
  background: var(--accent);
  box-shadow: 0 0 16px rgba(247, 183, 49, 0.42);
}

.primary-period-field input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(247, 183, 49, 0.13);
}

.compare-period-field {
  border-color: rgba(120, 214, 255, 0.34);
  background: linear-gradient(90deg, rgba(120, 214, 255, 0.07), rgba(255, 255, 255, 0.025) 46%);
}

.compare-period-field::before,
.compare-period-field span::before {
  background: #78d6ff;
  box-shadow: 0 0 16px rgba(120, 214, 255, 0.38);
}

.compare-period-field input:focus {
  border-color: #78d6ff;
  box-shadow: 0 0 0 3px rgba(120, 214, 255, 0.13);
}

.compare-chart {
  display: grid;
  gap: 12px;
}

.line-chart-card {
  display: grid;
  gap: 14px;
  position: relative;
}

.line-chart-scroll {
  overflow-x: auto;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(247, 183, 49, 0.035), transparent 38%),
    rgba(255, 255, 255, 0.025);
  box-shadow: inset 0 0 28px rgba(0, 0, 0, 0.22);
}

.line-chart {
  display: block;
  width: 100%;
  min-width: 720px;
  height: auto;
}

.grid-line {
  stroke: rgba(255, 255, 255, 0.09);
  stroke-width: 1;
}

.axis-label {
  fill: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.x-axis-label {
  fill: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.stats-line {
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.primary-line {
  stroke: var(--accent);
  filter: drop-shadow(0 0 7px rgba(247, 183, 49, 0.28));
}

.compare-line {
  stroke: #7dd3fc;
  stroke-dasharray: 6 7;
}

.hover-line {
  opacity: 0;
  stroke: rgba(255, 255, 255, 0.16);
  stroke-width: 1;
  pointer-events: none;
}

.chart-point {
  stroke: rgba(5, 7, 10, 0.95);
  stroke-width: 2;
  cursor: crosshair;
}

.chart-point-hit {
  fill: transparent;
  cursor: crosshair;
  pointer-events: all;
}

.chart-point-wrap.primary .chart-point {
  fill: var(--accent);
  filter: drop-shadow(0 0 8px rgba(247, 183, 49, 0.5));
}

.chart-point-wrap.compare .chart-point {
  fill: #7dd3fc;
  filter: drop-shadow(0 0 8px rgba(125, 211, 252, 0.45));
}

.chart-point-wrap:hover .hover-line {
  opacity: 1;
}

.chart-point-wrap:hover .chart-point {
  r: 7;
}

.chart-tooltip {
  position: absolute;
  z-index: 20;
  min-width: 210px;
  max-width: 260px;
  padding: 12px 14px;
  border: 1px solid rgba(247, 183, 49, 0.5);
  background: rgba(7, 10, 14, 0.96);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45), 0 0 22px rgba(247, 183, 49, 0.14);
  color: var(--text);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%);
  transition: opacity 120ms ease;
}

.chart-tooltip.is-visible {
  opacity: 1;
}

.chart-tooltip strong {
  display: block;
  color: var(--accent);
  font-family: Orbitron, Inter, sans-serif;
  margin-bottom: 4px;
}

.chart-tooltip span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 8px;
}

.chart-tooltip ul {
  display: grid;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 13px;
}

.chart-tooltip b {
  color: var(--text);
}

.chart-row {
  display: grid;
  grid-template-columns: minmax(90px, 130px) 1fr minmax(90px, 130px);
  gap: 12px;
  align-items: center;
}

.chart-label,
.chart-compare-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.chart-compare-label {
  text-align: right;
}

.chart-bars {
  display: grid;
  gap: 5px;
}

.bar {
  display: block;
  min-width: 24px;
  height: 18px;
  position: relative;
}

.bar.primary {
  background: linear-gradient(90deg, var(--accent), rgba(247, 183, 49, 0.4));
}

.bar.compare {
  background: linear-gradient(90deg, #7dd3fc, rgba(125, 211, 252, 0.28));
}

.bar b {
  position: absolute;
  right: 5px;
  top: 1px;
  color: #05070a;
  font-size: 11px;
  line-height: 16px;
}

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

.chart-legend i {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 7px;
}

.primary-dot {
  background: var(--accent);
}

.compare-dot {
  background: #7dd3fc;
}

.docker-node-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.admin-tools {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.admin-tool {
  display: grid;
  gap: 8px;
  min-height: 118px;
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  text-decoration: none;
  transition: var(--transition);
}

.admin-tool:hover {
  border-color: var(--accent);
  box-shadow: 0 0 22px rgba(247, 183, 49, 0.16);
  transform: translateY(-1px);
}

.admin-tool strong {
  color: var(--accent);
  font-family: Orbitron, Inter, sans-serif;
  text-transform: uppercase;
}

.admin-tool span {
  color: var(--muted);
  font-size: 13px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.news-card {
  display: grid;
  min-height: 100%;
  border: 1px solid var(--line);
  background: rgba(12, 16, 22, 0.92);
}

.news-card img,
.news-hero-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.news-card > div {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 18px;
}

.news-card h2 {
  margin: 0;
  font-size: 22px;
}

.news-card h2 a {
  color: var(--text);
  text-decoration: none;
}

.news-card h2 a:hover {
  color: var(--accent);
}

.news-article h1 {
  max-width: 980px;
}

.news-lead {
  max-width: 900px;
  color: var(--text);
  font-size: 19px;
  line-height: 1.65;
}

.news-body {
  max-width: 980px;
  color: var(--text);
  line-height: 1.75;
  white-space: normal;
}

.news-body h2,
.news-body h3 {
  margin: 26px 0 10px;
}

.news-body p,
.news-lead p,
.news-card-short p {
  margin: 0 0 12px;
}

.news-body ul,
.news-body ol {
  padding-left: 24px;
}

.news-body blockquote {
  margin: 18px 0;
  padding: 14px 18px;
  border-left: 3px solid var(--accent);
  background: rgba(247, 183, 49, 0.07);
}

.news-body a,
.news-lead a,
.news-card-short a {
  color: var(--accent);
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0;
}

.tag-cloud span {
  padding: 5px 9px;
  border: 1px solid rgba(247, 183, 49, 0.36);
  background: rgba(247, 183, 49, 0.08);
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
}

.news-admin-preview img {
  width: min(360px, 100%);
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid var(--line);
}

.news-admin-preview .checkbox-row {
  margin-top: 10px;
}

.news-file-input {
  display: block;
  width: 100%;
  min-height: 48px;
  margin-top: 8px;
  padding: 6px 12px 6px 6px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font: inherit;
  line-height: 34px;
  cursor: pointer;
  box-sizing: border-box;
}

.news-file-input::file-selector-button {
  min-height: 34px;
  margin: 0 14px 0 0;
  padding: 0 18px;
  border: 1px solid rgba(247, 183, 49, 0.75);
  background: linear-gradient(180deg, #ffc84a, var(--accent));
  color: #070a0d;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(247, 183, 49, 0.18);
}

.news-file-input:hover::file-selector-button {
  filter: brightness(1.05);
}

.badge.published {
  color: #29f29a;
}

.badge.draft {
  color: #9aa4b2;
}

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

.danger-form {
  margin-top: 14px;
}

.docker-config-panel {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.seo-lang-box {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.seo-lang-box h2 {
  margin: 0 0 4px;
  color: var(--accent);
  font-family: Orbitron, Inter, sans-serif;
  font-size: 18px;
}

.seo-section {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.16);
}

.seo-section h3 {
  margin: 0;
  color: #ffffff;
  font-size: 15px;
  text-transform: uppercase;
}

.seo-card-settings {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(247, 183, 49, 0.18);
  background: rgba(247, 183, 49, 0.04);
}

.seo-card-settings h4 {
  margin: 0;
  color: var(--accent);
  font-size: 13px;
  text-transform: uppercase;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--accent);
  font-weight: 900;
  text-decoration: none;
}

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

.limit-row {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 14px 0;
}

.limit-bar {
  width: min(460px, 100%);
  height: 9px;
  background: rgba(255, 255, 255, 0.07);
  overflow: hidden;
}

.limit-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  box-shadow: 0 0 16px var(--accent-glow);
}

@media (max-width: 760px) {
  .top {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    padding: 18px;
  }

  nav {
    gap: 12px;
  }

  main {
    width: min(100% - 24px, 1180px);
    margin-top: 18px;
  }

  .site-footer {
    width: min(100% - 24px, 1180px);
  }

  .site-footer > div {
    display: grid;
    padding: 18px;
  }

  .site-footer span {
    text-align: left;
  }

  .hero,
  .panel {
    padding: 22px;
  }

  .home-features {
    grid-template-columns: 1fr;
  }

  .home-feature-card {
    min-height: auto;
    padding: 22px;
  }

  .home-feature-card h2,
  .home-feature-card p {
    min-height: 0;
  }

  .demo-popover {
    position: static;
    width: 100%;
    margin-top: 12px;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    box-sizing: border-box;
  }

  .home-feature-demo,
  .demo-domain {
    width: 100%;
    box-sizing: border-box;
  }

  .demo-domain {
    justify-content: center;
  }

  .section-head {
    display: grid;
  }

  .search-form {
    width: 100%;
    grid-template-columns: 1fr;
    justify-content: stretch;
  }

  .domain-form.js-submit-check {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .stats,
  .cron-console-grid,
  .admin-domain-stats,
  .admin-tools,
  .two-col {
    grid-template-columns: 1fr;
  }

  .chart-row {
    grid-template-columns: 1fr;
  }

  .chart-compare-label {
    text-align: left;
  }

  .filter-form {
    grid-template-columns: 1fr;
  }

  .admin-mass-action {
    align-items: stretch;
    flex-direction: column;
  }

  .confirm-dialog {
    padding: 22px;
  }

  .confirm-actions {
    display: grid;
  }
}
