/* Shared chrome for SEO Audit Pack dashboard pages */
:root {
  --seo-text: #0f172a;
  --seo-muted: #64748b;
  --seo-border: #e2e8f0;
  --seo-brand: #0d9488;
  --seo-bg: #f8fafc;
  --seo-card: #fff;
  --seo-radius: 8px;
}

body.seo-page {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--seo-text);
  background: var(--seo-bg);
  margin: 0;
  line-height: 1.5;
}

.seo-chrome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.75rem 1.25rem;
  background: var(--seo-card);
  border-bottom: 1px solid var(--seo-border);
  position: sticky;
  top: 0;
  z-index: 10;
}

.seo-chrome__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--seo-text);
  font-weight: 600;
  font-size: 0.95rem;
}

.seo-chrome__brand img {
  display: block;
}

.seo-chrome__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  font-size: 0.875rem;
}

.seo-chrome__nav a {
  color: var(--seo-muted);
  text-decoration: none;
}

.seo-chrome__nav a:hover,
.seo-chrome__nav a[aria-current="page"] {
  color: var(--seo-brand);
}

.seo-main {
  max-width: 720px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 3rem;
}

.seo-main h1 {
  font-size: 1.5rem;
  margin: 0 0 0.5rem;
}

.seo-breadcrumb {
  font-size: 0.8rem;
  color: var(--seo-muted);
  margin: 0 0 1rem;
}

.seo-breadcrumb a {
  color: var(--seo-brand);
  text-decoration: none;
}

.seo-card {
  background: var(--seo-card);
  border: 1px solid var(--seo-border);
  border-radius: var(--seo-radius);
  padding: 1rem 1.25rem;
  margin: 1rem 0;
}

.seo-card--success {
  border-color: #86efac;
  background: #f0fdf4;
}

.seo-card--warn {
  border-color: #fcd34d;
  background: #fffbeb;
}

.seo-card h2,
.seo-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.seo-card p {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  color: var(--seo-muted);
}

.seo-card p:last-child {
  margin-bottom: 0;
}

.badge {
  display: inline-block;
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 999px;
  font-weight: 600;
  text-transform: capitalize;
  background: #e2e8f0;
  color: #475569;
}

.badge.complete,
.badge.ok {
  background: #d1fae5;
  color: #065f46;
}

.badge.running,
.badge.reserved {
  background: #dbeafe;
  color: #1e40af;
}

.badge.failed,
.badge.released {
  background: #fee2e2;
  color: #991b1b;
}

.btn {
  display: inline-block;
  padding: 10px 16px;
  border-radius: var(--seo-radius);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none;
  line-height: 1.2;
}

.btn-primary {
  background: var(--seo-brand);
  color: #fff;
  border-color: var(--seo-brand);
}

.btn-secondary {
  background: #fff;
  color: var(--seo-text);
  border-color: var(--seo-border);
}

.btn-ghost {
  background: transparent;
  color: var(--seo-brand);
  border-color: var(--seo-border);
}

.btn-danger {
  background: #dc2626;
  color: #fff;
  border-color: #dc2626;
}

.run-card {
  background: var(--seo-card);
  border: 1px solid var(--seo-border);
  border-radius: var(--seo-radius);
  padding: 1rem 1.25rem;
  margin: 0.75rem 0;
}

.run-card header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}

.run-card .run-meta {
  font-size: 0.85rem;
  color: var(--seo-muted);
  margin: 0 0 0.75rem;
}

.run-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-size: 0.875rem;
}

.run-actions a {
  color: var(--seo-brand);
  text-decoration: none;
  font-weight: 500;
}

.runs-section h2 {
  font-size: 1.1rem;
  margin: 1.5rem 0 0.5rem;
}

.seo-toast {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: #065f46;
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: var(--seo-radius);
  font-size: 0.875rem;
  z-index: 100;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* AEO → homepage diagnostic continuation (firstRun=trial) */
body.funnel-continue {
  background:
    radial-gradient(circle at 12% 0%, rgba(45, 212, 191, 0.14), transparent 32%),
    radial-gradient(circle at 88% 8%, rgba(110, 231, 255, 0.1), transparent 28%),
    linear-gradient(165deg, #f0fdfa 0%, #f8fafc 42%, #fff 100%);
}

body.funnel-continue .seo-chrome {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
}

body.funnel-continue .seo-main {
  max-width: 520px;
}

.funnel-flow {
  margin-top: 0.5rem;
  position: relative;
}

body.funnel-continue .funnel-flow::before {
  content: '';
  position: absolute;
  top: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(100%, 420px);
  height: 11rem;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.22), transparent 68%);
  pointer-events: none;
  z-index: 0;
}

body.funnel-continue .funnel-flow > * {
  position: relative;
  z-index: 1;
}

.funnel-back {
  font-size: 0.85rem;
  margin: 0 0 1.25rem;
}

.funnel-back a {
  color: var(--seo-muted);
  text-decoration: none;
}

.funnel-back a:hover {
  color: var(--seo-brand);
}

.funnel-steps {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.funnel-step {
  color: var(--seo-muted);
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: #f1f5f9;
}

.funnel-step--done {
  color: #0f766e;
  background: #ccfbf1;
}

.funnel-step--current {
  color: var(--seo-text);
  background: #fff;
  border: 1px solid var(--seo-border);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}

.funnel-step-sep {
  color: #cbd5e1;
  padding: 0;
  background: none;
}

.funnel-title {
  font-size: clamp(1.65rem, 4vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 0.5rem;
  line-height: 1.2;
}

body.funnel-continue .funnel-title {
  font-size: clamp(1.75rem, 4.2vw, 2.15rem);
  letter-spacing: -0.04em;
}

.funnel-lead {
  font-size: 1rem;
  color: var(--seo-muted);
  margin: 0 0 1.5rem;
  line-height: 1.6;
}

body.funnel-continue .funnel-lead {
  font-size: 0.98rem;
  max-width: 38ch;
}

.funnel-site-card {
  background: var(--seo-card);
  border: 1px solid var(--seo-border);
  border-radius: 12px;
  padding: 1.15rem 1.25rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

body.funnel-continue .funnel-site-card {
  border-radius: 16px;
  border-left: 3px solid var(--seo-brand);
  padding: 1.2rem 1.35rem;
  box-shadow: 0 8px 32px rgba(13, 148, 136, 0.08);
}

.funnel-site-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--seo-muted);
  margin-bottom: 0.35rem;
}

.funnel-site-url {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--seo-text);
  word-break: break-all;
  line-height: 1.4;
}

body.funnel-continue .funnel-site-url {
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}

.funnel-site-edit {
  margin-top: 0.65rem;
  font-size: 0.82rem;
  color: var(--seo-brand);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
}

body.funnel-continue .funnel-site-edit:hover {
  text-decoration: underline;
}

.funnel-site-input {
  display: none;
  margin-top: 0.75rem;
}

.funnel-site-input.is-open {
  display: block;
}

.funnel-site-input input {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--seo-border);
  border-radius: 8px;
  font-size: 0.95rem;
  box-sizing: border-box;
}

.btn-funnel-primary {
  display: block;
  width: 100%;
  padding: 1rem 1.25rem;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #0f766e 0%, #0d9488 100%);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(13, 148, 136, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-funnel-primary:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(13, 148, 136, 0.4);
}

.btn-funnel-primary:focus-visible {
  outline: 2px solid var(--seo-brand);
  outline-offset: 2px;
}

.btn-funnel-primary:disabled {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}

/* Specialist step list (funnel continuation) */
.funnel-steps-card {
  background: var(--seo-card);
  border: 1px solid var(--seo-border);
  border-radius: 16px;
  padding: 1.1rem 1.25rem 0.35rem;
  margin-top: 1.25rem;
  box-shadow: 0 8px 32px rgba(13, 148, 136, 0.06);
}

.funnel-steps-card__title {
  margin: 0 0 0.65rem;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--seo-text);
}

.funnel-step-row {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--seo-border);
  font-size: 0.875rem;
  line-height: 1.45;
}

.funnel-step-row:last-child {
  border-bottom: none;
  padding-bottom: 0.85rem;
}

.funnel-step-ic {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(180deg, #f0fdfa 0%, #ecfdf5 100%);
  border: 1px solid rgba(13, 148, 136, 0.15);
  color: #0f766e;
}

.funnel-step-ic svg {
  display: block;
  width: 1.15rem;
  height: 1.15rem;
}

.funnel-step-body strong {
  color: var(--seo-text);
  font-weight: 600;
}

.funnel-step-tagline {
  color: var(--seo-muted);
  font-weight: 500;
}

.funnel-step-preview {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.8rem;
  color: var(--seo-muted);
}

/* Autostart / in-progress progress */
.funnel-progress-card {
  background: var(--seo-card);
  border: 1px solid var(--seo-border);
  border-radius: 16px;
  padding: 1.15rem 1.25rem;
  margin-top: 1.25rem;
  box-shadow: 0 8px 32px rgba(13, 148, 136, 0.08);
}

.funnel-progress-label {
  margin: 0 0 0.85rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--seo-text);
}

.funnel-progress-track {
  height: 8px;
  background: #e2e8f0;
  border-radius: 999px;
  overflow: hidden;
}

.funnel-progress-bar {
  width: 38%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #0f766e, #2dd4bf, #0f766e);
  background-size: 200% 100%;
  animation: funnel-pulse 1.35s ease-in-out infinite;
}

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

@media (prefers-reduced-motion: reduce) {
  .funnel-progress-bar {
    animation: none;
    transform: none;
    width: 42%;
    background: #0d9488;
  }

  .btn-funnel-primary:hover:not(:disabled) {
    transform: none;
  }
}

.funnel-fine {
  font-size: 0.82rem;
  color: var(--seo-muted);
  text-align: center;
  margin: 0.85rem 0 0;
  line-height: 1.5;
}

.funnel-error {
  color: #b91c1c;
  font-size: 0.9rem;
  margin-top: 0.75rem;
}

body.funnel-continue #admin-default {
  display: none;
}

body.funnel-continue #active-run-banner {
  max-width: 520px;
  margin: 0 auto 1rem;
}

/* SEO Audits hub (audit-pack.html admin view) */
body.seo-page:not(.funnel-continue) {
  background:
    radial-gradient(circle at 8% 0%, rgba(45, 212, 191, 0.1), transparent 36%),
    radial-gradient(circle at 92% 4%, rgba(148, 163, 184, 0.08), transparent 32%),
    var(--seo-bg);
}

body.seo-page:not(.funnel-continue) .seo-main {
  max-width: 760px;
}

.seo-page-hero {
  margin-bottom: 1.25rem;
}

.seo-page-hero h1 {
  font-size: clamp(1.55rem, 3.5vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 0.5rem;
}

.seo-lead {
  margin: 0;
  font-size: 1rem;
  color: var(--seo-muted);
  line-height: 1.6;
  max-width: 52ch;
}

.status-stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0 0 0.25rem;
}

.entitlement-card {
  background: var(--seo-card);
  border: 1px solid var(--seo-border);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.entitlement-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--seo-text);
  line-height: 1.55;
}

.entitlement-card p + p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--seo-muted);
}

.entitlement-card a {
  color: var(--seo-brand);
  font-weight: 500;
}

.seo-aside-note {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  color: var(--seo-muted);
  line-height: 1.55;
}

.seo-aside-note a {
  color: var(--seo-brand);
  font-weight: 500;
  text-decoration: none;
}

.seo-aside-note a:hover {
  text-decoration: underline;
}

.active-run-banner {
  border-radius: 12px;
  padding: 1rem 1.25rem;
}

.active-run-banner--progress {
  border-color: #93c5fd;
  background: linear-gradient(135deg, #eff6ff 0%, #f0f9ff 100%);
}

.active-run-banner--failed {
  border-color: #fecaca;
  background: linear-gradient(135deg, #fef2f2 0%, #fff7ed 100%);
}

.active-run-banner strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.active-run-banner__url {
  display: block;
  font-size: 0.875rem;
  color: var(--seo-muted);
  word-break: break-all;
}

.active-run-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.active-run-banner__actions .btn {
  padding: 6px 14px;
  font-size: 0.85rem;
}

.team-strip__title {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.team-strip__caption {
  margin: 0 0 0.75rem;
  font-size: 0.82rem;
  color: var(--seo-muted);
  line-height: 1.5;
}

.team-members {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.team-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--seo-border);
  text-decoration: none;
  color: var(--seo-text);
  font-size: 0.82rem;
  font-weight: 500;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.team-chip:hover {
  border-color: rgba(13, 148, 136, 0.45);
  box-shadow: 0 2px 8px rgba(13, 148, 136, 0.1);
}

.audit-form-card {
  border-radius: 14px;
  padding: 1.35rem 1.5rem;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
}

.audit-form__header {
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--seo-border);
}

.audit-form__header h2 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.audit-form__intro {
  margin: 0;
  font-size: 0.9rem;
  color: var(--seo-muted);
  line-height: 1.55;
}

.audit-mode-box {
  margin-bottom: 1.25rem;
  padding: 1rem 1.1rem;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  border-radius: 10px;
  border: 1px solid var(--seo-border);
}

.audit-mode-box__title {
  margin: 0 0 0.65rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--seo-muted);
}

.audit-mode-option {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  margin-bottom: 0.65rem;
  font-size: 0.9rem;
  cursor: pointer;
  line-height: 1.45;
}

.audit-mode-option:last-child {
  margin-bottom: 0;
}

.audit-mode-option input {
  margin-top: 0.2rem;
  flex-shrink: 0;
  accent-color: var(--seo-brand);
}

.audit-mode-option strong {
  color: var(--seo-text);
}

.audit-field {
  display: block;
  margin-bottom: 1.1rem;
}

.audit-field__label-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  margin-bottom: 0.35rem;
}

.audit-field__label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--seo-text);
}

.optional-badge,
.required-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 999px;
}

.optional-badge {
  background: #f1f5f9;
  color: #64748b;
}

.required-badge {
  background: #ccfbf1;
  color: #0f766e;
}

.audit-field__hint {
  margin: 0 0 0.4rem;
  font-size: 0.82rem;
  color: var(--seo-muted);
  line-height: 1.5;
}

.audit-field input,
.audit-field textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  margin: 0;
  box-sizing: border-box;
  border: 1px solid var(--seo-border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.9rem;
  line-height: 1.4;
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.audit-field input:focus,
.audit-field textarea:focus {
  outline: none;
  border-color: var(--seo-brand);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.12);
}

.audit-field textarea {
  resize: vertical;
  min-height: 4.5rem;
}

.audit-brand-panel {
  margin: 0 0 1.1rem;
  padding: 1rem 1.1rem;
  border: 1px dashed #cbd5e1;
  border-radius: 10px;
  background: #fafbfc;
}

.audit-brand-panel__legend {
  margin: 0 0 0.75rem;
  padding: 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: #475569;
  line-height: 1.45;
}

.audit-brand-panel .audit-field {
  margin-bottom: 0.85rem;
}

.audit-brand-panel .audit-field:last-child {
  margin-bottom: 0;
}

.run-preview-box {
  display: none;
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  font-size: 0.85rem;
  color: #475569;
  line-height: 1.55;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid var(--seo-border);
}

.url-warn {
  display: none;
  margin: 0 0 0.85rem;
  padding: 0.65rem 0.85rem;
  font-size: 0.82rem;
  color: #92400e;
  line-height: 1.45;
  background: #fffbeb;
  border-radius: 8px;
  border: 1px solid #fcd34d;
}

.audit-form__actions {
  margin-top: 0.25rem;
}

.audit-form__actions .btn-primary {
  padding: 0.75rem 1.35rem;
  font-size: 0.95rem;
}

.start-hint {
  display: none;
  margin: 0.85rem 0 0;
  font-size: 0.85rem;
  color: var(--seo-muted);
  line-height: 1.55;
}

.start-error {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  color: #b91c1c;
  line-height: 1.45;
  min-height: 1.25em;
}

.runs-subsection h3 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--seo-muted);
  margin: 0 0 0.5rem;
}

.runs-subsection + .runs-subsection h3 {
  margin-top: 1.25rem;
}

.gsc-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 700;
}

.gsc-card__lead {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
}

.gsc-card--connected .gsc-card__lead {
  color: #065f46;
}

.gsc-property-row {
  margin-top: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.gsc-property-row__label {
  font-size: 0.85rem;
  color: #065f46;
}

.gsc-property-code {
  background: #d1fae5;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.82rem;
}

.gsc-btn-text {
  font-size: 0.8rem;
  padding: 4px 10px;
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  border: 1px solid #6ee7b7;
  color: #065f46;
}

.gsc-btn-text--warn {
  border-color: #f59e0b;
  color: #92400e;
}

.gsc-prop-picker {
  display: none;
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(13, 148, 136, 0.15);
}

.gsc-prop-picker label {
  font-size: 0.85rem;
  font-weight: 600;
  display: block;
  margin-bottom: 0.35rem;
}

.gsc-prop-picker input {
  width: 100%;
  max-width: 420px;
  padding: 0.5rem 0.65rem;
  border: 1px solid var(--seo-border);
  border-radius: 6px;
  font-size: 0.9rem;
}

.gsc-prop-picker__actions {
  margin-top: 0.5rem;
  display: flex;
  gap: 0.5rem;
}

.gsc-match-hint {
  margin-top: 0.65rem;
  font-size: 0.82rem;
  padding: 0.45rem 0.65rem;
  border-radius: 6px;
  line-height: 1.45;
}

.gsc-match-hint--ok {
  background: #d1fae5;
  color: #065f46;
}

.gsc-match-hint--warn {
  background: #fef3c7;
  color: #92400e;
}

.link-btn {
  background: none;
  border: none;
  padding: 0;
  color: var(--seo-brand);
  font-weight: 500;
  font-size: inherit;
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
}

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