:root {
  --bg: #f5f6f8;
  --bg-elev: #ffffff;
  --text: #1a1d24;
  --text-muted: #556;
  --border: #e3e6ec;
  --border-strong: #c7cdd8;
  --accent: #3b6fff;
  --accent-hover: #2557ea;
  --accent-fg: #fff;
  --success: #1a8a4a;
  --warning: #b76e00;
  --danger: #c1321f;
  --code-bg: #f0f2f7;
  --shadow-sm: 0 1px 2px rgba(16, 24, 40, 0.06);
  --shadow-md: 0 4px 12px rgba(16, 24, 40, 0.08);
  --shadow-lg: 0 16px 48px rgba(16, 24, 40, 0.18);
  --radius: 10px;
  --radius-lg: 14px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0f1115;
    --bg-elev: #171a21;
    --text: #e8ebf1;
    --text-muted: #9aa3b3;
    --border: #252a34;
    --border-strong: #343a48;
    --accent: #6e93ff;
    --accent-hover: #8aa8ff;
    --accent-fg: #0b0d12;
    --code-bg: #1f232c;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.7);
  }
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.92em;
  background: var(--code-bg);
  padding: 0.12em 0.4em;
  border-radius: 4px;
}

pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.82em;
  background: var(--code-bg);
  padding: 1rem;
  border-radius: var(--radius);
  overflow: auto;
  max-height: 380px;
  line-height: 1.45;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ----- Header ----- */
.site-header {
  background: linear-gradient(135deg, #1e2a4a 0%, #2d3e70 100%);
  color: #fff;
  padding: 2.5rem 0 2rem;
  box-shadow: var(--shadow-sm);
}

/* Auth gate overlay — shown until the user is signed in */
.auth-screen {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #1e2a4a 0%, #2d3e70 100%);
  padding: 1.5rem;
}

body.authed .auth-screen {
  display: none;
}

.auth-card {
  background: var(--bg-elev);
  color: var(--text);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 2.5rem;
  width: 100%;
  max-width: 440px;
}

.auth-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.auth-brand h1 {
  font-size: 1.3rem;
  margin: 0;
  line-height: 1.25;
}

.auth-tagline {
  color: var(--text-muted);
  margin: 0 0 1.5rem;
  font-size: 0.92rem;
}

.auth-form h2 {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
}

.auth-form label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin: 0.75rem 0 0.25rem;
}

.auth-form button {
  width: 100%;
  margin-top: 1rem;
  justify-content: center;
}

.auth-help {
  margin: 0.75rem 0 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.auth-help.error {
  color: var(--danger);
  font-weight: 500;
}

.auth-help.success {
  color: var(--success);
  font-weight: 500;
}

.auth-help a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.auth-help a:hover { text-decoration: underline; }

/* Header whoami + logout */
.header-auth {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-left: auto;
}

.whoami {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
  font-variant-numeric: tabular-nums;
}

@media (max-width: 640px) {
  .whoami { display: none; }
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.header-inner .tagline {
  flex: 1;
}

.btn-header {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
}

.btn-header:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.35);
}

/* Upload dropzone */
.dropzone {
  display: grid;
  place-items: center;
  padding: 2.5rem 1rem;
  border: 2px dashed var(--border-strong);
  border-radius: var(--radius-lg);
  background: var(--code-bg);
  cursor: pointer;
  transition: background 0.12s ease, border-color 0.12s ease;
  text-align: center;
}

.dropzone:hover,
.dropzone:focus-visible,
.dropzone.dragging {
  border-color: var(--accent);
  background: rgba(59, 111, 255, 0.08);
  outline: none;
}

.dropzone-primary {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  color: var(--text);
}

.dropzone-secondary {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.file-info {
  margin-top: 0.75rem;
  padding: 0.6rem 0.8rem;
  border-radius: var(--radius);
  background: var(--code-bg);
  font-size: 0.88rem;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: center;
}

.file-info strong {
  color: var(--text);
}

/* Summary of what scrubbing changed */
.scrub-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.75rem 0;
}

.scrub-tag {
  font-size: 0.82rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(59, 111, 255, 0.12);
  color: var(--accent);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.scrub-tag.empty {
  background: var(--code-bg);
  color: var(--text-muted);
}

.feedback-modal-content {
  max-width: 520px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark {
  font-size: 2.2rem;
}

.site-header h1 {
  margin: 0;
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.tagline {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
}

/* ----- Intro ----- */
.intro {
  padding: 2rem 0 1.25rem;
}

.intro h2 {
  margin: 0 0 0.5rem;
  font-size: 1.4rem;
}

.intro p {
  margin: 0 0 1.25rem;
  color: var(--text-muted);
  max-width: 56em;
}

.search-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: stretch;
}

/* Library tabs (Agents / Skills) */
.library-tabs {
  display: flex;
  gap: 0.4rem;
  margin: 1.5rem 0 0.5rem;
  border-bottom: 1px solid var(--border);
}

.library-tab {
  background: transparent;
  border: 0;
  padding: 0.7rem 1.1rem;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.12s ease, border-color 0.12s ease;
}

.library-tab:hover {
  color: var(--text);
}

.library-tab.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* Site stats summary under the intro copy */
.stats-bar {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.stats-bar .stat {
  display: inline-flex;
  align-items: baseline;
  gap: 0.3rem;
}

.stats-bar .stat-value {
  font-weight: 650;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}

.stats-bar .stat-sep {
  color: var(--border-strong);
}

/* Per-agent download counter, shown in the card footer */
.agent-uses {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-variant-numeric: tabular-nums;
}

.search-row input[type="search"] {
  flex: 1 1 240px;
  min-width: 0;
}

.search-row select {
  flex: 0 0 200px;
}

.search-row > button {
  flex: 0 0 auto;
  white-space: nowrap;
}

/* Tool picker grid (builder step 4) */
.tool-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.tool-grid > label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  background: var(--bg-elev);
  transition: border-color 0.12s ease;
  margin: 0;
}

.tool-grid > label:has(input:checked) {
  border-color: var(--accent);
  background: var(--code-bg);
}

.tool-grid input[type="checkbox"] {
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.tool-grid strong {
  font-size: 0.92rem;
  font-weight: 650;
}

.help-text-inline {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Days-of-week picker (builder step 3) */
.days-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.35rem;
}

.days-grid > label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.55rem 0.35rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  background: var(--bg-elev);
  font-size: 0.85rem;
  margin: 0;
}

.days-grid > label:has(input:checked) {
  border-color: var(--accent);
  background: var(--code-bg);
}

input[type="search"],
input[type="text"],
input[type="email"],
input[type="url"],
select,
textarea {
  width: 100%;
  padding: 0.6rem 0.85rem;
  font: inherit;
  color: var(--text);
  background: var(--bg-elev);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  transition: border-color 0.12s ease, box-shadow 0.12s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(59, 111, 255, 0.25);
}

/* Sample / example placeholder text is shown in grey italic so it reads as
 * "here is the kind of answer we expect" rather than competing with real
 * input. The instant the user types, normal input styling takes over. */
input::placeholder,
textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.72;
  font-style: italic;
}

/* Multi-line textareas get smaller placeholder text so the whole sample
 * fits without scrolling. */
textarea::placeholder {
  font-size: 0.9em;
  line-height: 1.5;
}

input:invalid:not(:placeholder-shown) {
  border-color: var(--danger);
}

/* ----- Status messages ----- */
.status-message {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-muted);
  font-size: 1rem;
}

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

.hidden {
  display: none !important;
}

/* ----- Agent grid ----- */
.grid-container {
  padding-bottom: 3rem;
}

.agent-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.agent-card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: left;
  font: inherit;
  color: inherit;
  width: 100%;
}

.agent-card:hover,
.agent-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
  outline: none;
}

.agent-card-header {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.agent-icon {
  font-size: 2rem;
  line-height: 1;
}

.agent-title-block h3 {
  margin: 0 0 0.15rem;
  font-size: 1.05rem;
  font-weight: 650;
  line-height: 1.3;
}

.agent-category {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.agent-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.93rem;
}

.agent-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 0.6rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.chips {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.chip {
  font-size: 0.75rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: var(--code-bg);
  color: var(--text-muted);
}

.chip-community {
  background: #6e93ff22;
  color: var(--accent);
  font-weight: 600;
}

/* ----- Per-card thumbs voting ----- */
/* Sits underneath the existing footer row. role=button + tabindex on the
   inner spans handles keyboard activation; CSS just makes them feel like
   buttons. Active state shades the icon background and bumps the count. */

.card-votes {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.55rem;
  padding-top: 0.55rem;
  border-top: 1px dashed var(--border);
}

.vote-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--code-bg);
  color: var(--text-muted);
  font-size: 0.78rem;
  cursor: pointer;
  user-select: none;
  transition: background 0.12s ease, color 0.12s ease, border-color 0.12s ease;
}

.vote-btn:hover {
  background: rgba(110, 147, 255, 0.12);
  border-color: rgba(110, 147, 255, 0.45);
  color: var(--text);
}

.vote-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.vote-btn.vote-up.active {
  background: rgba(74, 222, 128, 0.18);
  border-color: rgba(74, 222, 128, 0.55);
  color: #4ade80;
}

.vote-btn.vote-down.active {
  background: rgba(239, 68, 68, 0.18);
  border-color: rgba(239, 68, 68, 0.55);
  color: #fca5a5;
}

.vote-icon {
  font-size: 0.95rem;
  line-height: 1;
}

.vote-count {
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}

/* ----- Admin mode ----- */
/* The Admin toggle in the header. Visible only when the API has confirmed
   the signed-in user is an admin (body.is-admin is set). When the user
   clicks it, body.admin-mode is toggled and per-card delete affordances
   light up. */

#admin-toggle.hidden { display: none; }

body.is-admin #admin-toggle {
  display: inline-flex;
}

body.admin-mode #admin-toggle {
  background: rgba(239, 68, 68, 0.25);
  border-color: rgba(239, 68, 68, 0.55);
  color: #fff;
}

/* The little inline delete button on each card. Hidden by default; shown
   only when admin mode is on. Sits inside the existing card so we don't
   need to restructure the grid. */

.agent-card .card-delete {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  display: none;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  border: 1px solid rgba(239, 68, 68, 0.5);
  background: rgba(239, 68, 68, 0.15);
  color: #fca5a5;
  font-size: 0.95rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

.agent-card .card-delete:hover:not(:disabled) {
  background: rgba(239, 68, 68, 0.35);
  color: #fff;
}

.agent-card .card-delete:disabled {
  opacity: 0.5;
  cursor: wait;
}

body.admin-mode .agent-card {
  position: relative;
}

body.admin-mode .agent-card .card-delete {
  display: inline-flex;
}

/* ----- Modal / wizard ----- */
.modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 100;
  padding: 1rem;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 17, 21, 0.55);
  backdrop-filter: blur(2px);
}

.modal-content {
  position: relative;
  background: var(--bg-elev);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 720px;
  width: 100%;
  max-height: 90vh;
  overflow: auto;
  padding: 2rem;
}

.modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: transparent;
  border: 0;
  color: var(--text-muted);
  font-size: 1.8rem;
  line-height: 1;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.modal-close:hover {
  background: var(--code-bg);
  color: var(--text);
}

.wizard-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-right: 2rem;
}

.wizard-icon {
  font-size: 2.4rem;
  line-height: 1;
}

.wizard-header h2 {
  margin: 0 0 0.15rem;
  font-size: 1.35rem;
}

.wizard-meta {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.wizard-description p {
  margin: 0 0 0.5rem;
  color: var(--text-muted);
}

.wizard-steps {
  display: flex;
  gap: 0;
  margin: 1.25rem 0 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.wizard-steps .step {
  flex: 1;
  padding: 0.7rem 0.9rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  background: transparent;
  border-right: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.wizard-steps .step:last-child {
  border-right: 0;
}

.wizard-steps .step span {
  display: inline-grid;
  place-items: center;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  background: var(--code-bg);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.8rem;
}

.wizard-steps .step.active {
  background: var(--bg);
  color: var(--text);
  font-weight: 600;
}

.wizard-steps .step.active span {
  background: var(--accent);
  color: var(--accent-fg);
}

.wizard-steps .step.done span {
  background: var(--success);
  color: #fff;
}

.wizard-panel {
  display: none;
  animation: fadeIn 0.15s ease;
}

.wizard-panel.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

.wizard-panel h3 {
  margin: 0 0 0.4rem;
  font-size: 1.1rem;
}

.help-text {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin: 0 0 0.75rem;
}

.help-text.error {
  color: var(--danger);
  font-weight: 500;
}

.help-text.success {
  color: var(--success);
  font-weight: 500;
}

.wizard-panel label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0.85rem 0 0.3rem;
}

.field {
  margin-bottom: 1rem;
}

.field-label-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.3rem;
}

.field-label {
  font-size: 0.9rem;
  font-weight: 600;
}

.field-required {
  color: var(--danger);
}

.field-optional {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.field-group-header {
  margin: 1.5rem 0 0.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.field-group-header:first-child {
  border-top: 0;
  padding-top: 0;
  margin-top: 0;
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.1rem;
  font: inherit;
  font-weight: 600;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.12s ease, border-color 0.12s ease,
    transform 0.06s ease, box-shadow 0.12s ease;
  text-decoration: none;
}

.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.btn:active:not(:disabled) {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--accent);
  color: var(--accent-fg);
  border-color: var(--accent);
}

.btn-primary:hover:not(:disabled) {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

.btn-secondary {
  background: var(--bg-elev);
  color: var(--text);
  border-color: var(--border-strong);
}

.btn-secondary:hover:not(:disabled) {
  background: var(--code-bg);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border-color: transparent;
}

.btn-ghost:hover:not(:disabled) {
  color: var(--text);
  background: var(--code-bg);
}

.wizard-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.download-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin: 1rem 0;
}

.preview {
  margin-top: 1rem;
}

.preview-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
  font-size: 0.88rem;
}

textarea#preview-content,
textarea#b-preview-content,
textarea#u-preview-content {
  width: 100%;
  min-height: 380px;
  max-height: 60vh;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.82rem;
  line-height: 1.5;
  background: var(--code-bg);
  color: var(--text);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 1rem;
  resize: vertical;
  white-space: pre;
  tab-size: 2;
}

textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: 1.5;
  resize: vertical;
}

.btn-small {
  padding: 0.35rem 0.7rem;
  font-size: 0.82rem;
}

/* ----- Footer ----- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  color: var(--text-muted);
  font-size: 0.85rem;
  text-align: center;
  margin-top: 3rem;
}

.site-footer p {
  margin: 0;
}

/* ----- Small screens ----- */
@media (max-width: 640px) {
  .modal-content {
    padding: 1.5rem 1.1rem;
  }
  .wizard-steps .step {
    font-size: 0.75rem;
    padding: 0.5rem 0.4rem;
  }
  .wizard-steps .step span {
    width: 1.2rem;
    height: 1.2rem;
    font-size: 0.7rem;
  }
}
