/* Teacher UI styles. Designed to fit inside any WordPress theme. */

/* ============================================================
   SCOPED RESET — neutralises host-theme styles that would bleed
   into the tool now that it inherits the theme (blend mode).
   Only affects elements INSIDE the plugin wrappers (.mwp-wizard-page
   / .mwp-app); nothing on the rest of the page is touched.
   Element targets are wrapped in :where() so the whole rule stays at
   specificity (0,1,0): it overrides a theme's element-level styles
   but LOSES to the plugin's own class rules (which tie and win by
   load order, since this block is first). For pathological themes
   with very high-specificity rules, a Shadow DOM mount is the escape
   hatch — this reset handles the common cases.
   ============================================================ */
:is(.mwp-wizard-page, .mwp-app) :where(*, *::before, *::after) {
  box-sizing: border-box;
}
:is(.mwp-wizard-page, .mwp-app) :where(button, input, select, textarea, optgroup) {
  font: inherit;
  color: inherit;
  margin: 0;
  letter-spacing: inherit;
  text-transform: none;
  background: transparent;
}
:is(.mwp-wizard-page, .mwp-app) :where(button) {
  border: 0;
  padding: 0;
  cursor: pointer;
  line-height: inherit;
  text-align: inherit;
}
:is(.mwp-wizard-page, .mwp-app) :where(h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd) {
  margin: 0;
}
:is(.mwp-wizard-page, .mwp-app) :where(ul, ol) {
  margin: 0;
  padding: 0;
  list-style: none;
}
:is(.mwp-wizard-page, .mwp-app) :where(a) {
  color: inherit;
  text-decoration: none;
}
:is(.mwp-wizard-page, .mwp-app) :where(img) {
  max-width: 100%;
  height: auto;
}
:is(.mwp-wizard-page, .mwp-app) :where(table) {
  border-collapse: collapse;
}

.mwp-app {
    --mwp-ink: #1c1f24;
    --mwp-ink-soft: #4a5160;
    --mwp-line: #d8dde4;
    --mwp-bg: #f7f8fa;
    --mwp-card: #ffffff;
    --mwp-accent: #2c5282;
    --mwp-accent-soft: #ebf2fa;
    --mwp-danger: #b91c1c;
    --mwp-radius: 10px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, sans-serif;
    color: var(--mwp-ink);
    font-size: 15px;
    line-height: 1.5;
    background: var(--mwp-bg);
    padding: 20px;
    border-radius: 14px;
}

.mwp-app * { box-sizing: border-box; }

.mwp-app-head {
    text-align: center;
    padding: 18px 16px 22px;
    margin-bottom: 6px;
}
.mwp-brand-badge {
    display: inline-block;
    background: #0a1f44;
    color: #fff;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 11px;
    letter-spacing: 0.14em;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.mwp-app-head h2 {
    font-family: 'Source Serif 4', Georgia, 'Times New Roman', serif;
    font-size: 30px;
    color: #0a1f44;
    margin: 0 0 12px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.005em;
}
.mwp-app-head p {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.6;
    max-width: 720px;
    margin: 0 auto 18px;
}
.mwp-feature-pills {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}
.pill-feature {
    background: #fff;
    border: 1px solid #dbeafe;
    color: var(--mwp-accent);
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
}
@media (max-width: 600px) {
    .mwp-app-head h2 { font-size: 22px; }
    .mwp-app-head p { font-size: 14px; }
}

/* ---------- Presets ---------- */
.mwp-presets { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.mwp-presets button {
    padding: 7px 14px;
    border: 1.5px solid var(--mwp-line);
    background: var(--mwp-card);
    border-radius: 999px;
    cursor: pointer;
    font-weight: 500;
    transition: 0.15s;
}
.mwp-presets button:hover { border-color: var(--mwp-accent); color: var(--mwp-accent); }
.mwp-presets button.is-active { background: var(--mwp-accent); border-color: var(--mwp-accent); color: #fff; }

/* ---------- Controls grid ---------- */
.mwp-controls {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 12px;
    background: var(--mwp-card);
    padding: 16px;
    border-radius: var(--mwp-radius);
    border: 1px solid var(--mwp-line);
}
.mwp-field { display: flex; flex-direction: column; gap: 4px; }
.mwp-field span, .mwp-version-toggle span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--mwp-ink-soft);
    font-weight: 600;
}
.mwp-field select,
.mwp-field input[type="number"] {
    width: 100%;
    padding: 8px 10px;
    border: 1.5px solid var(--mwp-line);
    border-radius: 8px;
    font-size: 14px;
    background: #fff;
}

.mwp-field-formats {
    grid-column: 1 / -1;
    border: 1.5px solid var(--mwp-line);
    border-radius: 8px;
    padding: 8px 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}
.mwp-field-formats legend {
    padding: 0 6px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--mwp-ink-soft);
    font-weight: 600;
}
.mwp-field-formats label { display: inline-flex; gap: 6px; align-items: center; font-size: 14px; }

.mwp-field-spiral {
    grid-column: 1 / -1;
    border: 1.5px solid var(--mwp-line);
    border-radius: 8px;
    background: var(--mwp-accent-soft);
    padding: 8px 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
}
.mwp-field-spiral legend {
    padding: 0 6px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--mwp-ink-soft);
    font-weight: 600;
}
.mwp-field-spiral .mwp-spiral-enable {
    width: 100%;
    font-size: 14px;
    display: inline-flex;
    gap: 6px;
    align-items: center;
}
.mwp-spiral-topics {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
}
.mwp-spiral-topics[hidden] { display: none; }
select.is-locked {
    background: var(--mwp-bg);
    color: var(--mwp-ink-soft);
    opacity: 0.65;
    cursor: not-allowed;
}
.mwp-spiral-topics label { display: inline-flex; gap: 6px; align-items: center; font-size: 14px; }

.mwp-version-toggle {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}
.mwp-segmented {
    display: inline-flex;
    border: 1.5px solid var(--mwp-line);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}
.mwp-segmented label { padding: 7px 14px; cursor: pointer; font-size: 14px; }
.mwp-segmented input { display: none; }
.mwp-segmented label:has(input:checked) { background: var(--mwp-accent); color: #fff; }
.mwp-all-three { font-size: 13px; color: var(--mwp-ink-soft); display: inline-flex; gap: 6px; align-items: center; }
.mwp-tip { position: relative; cursor: default; font-size: 13px; color: var(--mwp-ink-soft); }
.mwp-tip::after { content: attr(aria-label); position: absolute; bottom: calc(100% + 6px); left: 50%; transform: translateX(-50%); background: #1c1f24; color: #fff; font-size: 12px; font-weight: 400; text-transform: none; letter-spacing: 0; line-height: 1.4; white-space: normal; width: 220px; padding: 7px 10px; border-radius: 6px; pointer-events: none; opacity: 0; transition: opacity 0.15s; z-index: 10; }
.mwp-tip:hover::after { opacity: 1; }

/* ---------- Action buttons ---------- */
.mwp-actions { grid-column: 1 / -1; display: flex; gap: 10px; flex-wrap: wrap; margin-top: 4px; }
.mwp-btn {
    padding: 10px 18px;
    border: 1.5px solid var(--mwp-line);
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: 0.15s;
}
/* Scoped at .mwp-app level (0,2,0) so it beats theme button rules like
   ".site button" or ".entry-content button" which sit at (0,1,1). */
.mwp-app .mwp-btn { color: #1e293b; }
.mwp-app .mwp-btn-primary { color: #fff; }
.mwp-btn:hover { border-color: var(--mwp-accent); }
.mwp-btn-primary { background: var(--mwp-accent); color: #fff; border-color: var(--mwp-accent); }
.mwp-btn-primary:hover { background: #1f3a5f; }

/* Share digitally button */
.mwp-btn-share { background: #f0fdf4; border-color: #86efac; color: #166534; }
.mwp-btn-share:hover { background: #dcfce7; border-color: #4ade80; color: #166534; }

/* Share panel — appears below the toolbar after clicking Share */
.mwp-share-panel {
    margin: 10px 0 4px;
    padding: 14px 16px;
    background: #f0fdf4;
    border: 1.5px solid #86efac;
    border-radius: 8px;
}
.mwp-share-head {
    font-family: Inter, sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #166534;
    margin-bottom: 10px;
}
.mwp-share-url-row {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}
.mwp-share-url {
    flex: 1;
    min-width: 200px;
    padding: 8px 10px;
    border: 1.5px solid #86efac;
    border-radius: 6px;
    background: #fff;
    font-family: Inter, sans-serif;
    font-size: 13px;
    color: var(--mwp-ink);
}
.mwp-btn-copy {
    padding: 8px 14px;
    background: #166534;
    color: #fff;
    border-color: #166534;
    font-size: 13px;
}
.mwp-btn-copy:hover { background: #14532d; border-color: #14532d; color: #fff; }

/* LMS sharing buttons row */
.mwp-share-lms-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #bbf7d0;
}

/* Google Classroom */
.mwp-btn-gclassroom {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    text-decoration: none;
    font-size: 13px;
    background: #fff;
    color: #0f9d58;
    border-color: #0f9d58;
    padding: 8px 14px;
}
.mwp-btn-gclassroom:hover {
    background: #f0fdf4;
    border-color: #0f9d58;
    color: #0f9d58;
}

/* Canvas */
.mwp-btn-canvas {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    background: #fff;
    color: #e66000;
    border-color: #e66000;
    padding: 8px 14px;
}
.mwp-btn-canvas:hover {
    background: #fff7f0;
    border-color: #e66000;
    color: #e66000;
}

.mwp-share-hint {
    font-family: Inter, sans-serif;
    font-size: 12px;
    color: #4b7a5c;
    margin: 8px 0 0;
    line-height: 1.5;
}

.mwp-loading { padding: 14px; text-align: center; color: var(--mwp-ink-soft); }
.mwp-error { padding: 12px; background: #fee2e2; color: #991b1b; border-radius: 8px; margin-top: 12px; }

/* ---------- Result panel ---------- */
.mwp-result {
    margin-top: 18px;
    background: var(--mwp-card);
    border-radius: var(--mwp-radius);
    border: 1px solid var(--mwp-line);
    padding: 16px;
}
.mwp-result-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--mwp-line);
}
.mwp-result-title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
/* Inline-editable title — looks like plain text until hovered/focused */
.mwp-result-title-text {
    padding: 3px 8px;
    border-radius: 6px;
    border: 1.5px solid transparent;
    transition: 0.12s;
    cursor: text;
    min-width: 80px;
    outline: none;
}
.mwp-result-title-text:hover {
    background: #f7f8fa;
    border-color: #e3e7ec;
}
.mwp-result-title-text:focus {
    background: #fff;
    border-color: var(--mwp-accent, #2c5282);
    box-shadow: 0 0 0 3px rgba(44, 82, 130, 0.12);
}
.mwp-result-title-pen {
    font-size: 13px;
    color: var(--mwp-ink-soft, #6b7280);
    opacity: 0.6;
    transition: 0.12s;
}
.mwp-result-title:hover .mwp-result-title-pen { opacity: 1; }

.mwp-result-meta { color: var(--mwp-ink-soft); font-size: 13px; }
.mwp-result-actions { margin-left: auto; display: flex; gap: 6px; }

/* Drag-to-reorder hint above the question list */
.mwp-reorder-hint {
    margin: 8px 0 14px;
    padding: 8px 12px;
    background: #f0f7ff;
    border: 1px dashed #93c5fd;
    border-radius: 8px;
    font-size: 13px;
    color: #1e40af;
    display: flex;
    align-items: center;
    gap: 8px;
}
.mwp-reorder-hint-handle {
    display: inline-block;
    font-weight: 800;
    color: #2c5282;
    padding: 0 4px;
}

/* ---------- Variant tabs ---------- */
.mwp-variant-tabs {
    display: flex;
    gap: 8px;
    margin: 0 0 14px;
    padding: 8px;
    background: #f1f5f9;
    border-radius: 8px;
}
.mwp-variant-tab {
    padding: 8px 18px;
    background: #fff;
    border: 1.5px solid var(--mwp-line);
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    color: var(--mwp-ink-soft);
    transition: 0.15s;
}
.mwp-variant-tab:hover { color: var(--mwp-accent); border-color: var(--mwp-accent); }
.mwp-variant-tab.is-active {
    background: var(--mwp-accent);
    color: #fff;
    border-color: var(--mwp-accent);
}

/* ---------- Question cards ---------- */
.mwp-q-list { list-style: none; padding: 0; margin: 0; counter-reset: mwpqlist; }

.mwp-q-card {
    counter-increment: mwpqlist;
    padding: 14px 14px 14px 56px;
    border: 1px solid var(--mwp-line);
    border-radius: 8px;
    margin-bottom: 8px;
    position: relative;
    background: #fff;
    transition: box-shadow 0.15s, border-color 0.15s, opacity 0.15s;
}
.mwp-q-card::before {
    content: counter(mwpqlist);
    position: absolute;
    left: 14px;
    top: 14px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--mwp-accent-soft);
    color: var(--mwp-accent);
    font-weight: 700;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* drag handle */
.mwp-q-handle {
    position: absolute;
    right: 12px;
    top: 12px;
    width: 22px;
    height: 22px;
    color: var(--mwp-ink-soft);
    cursor: grab;
    user-select: none;
    font-weight: 700;
    line-height: 22px;
    text-align: center;
}
.mwp-q-handle:hover { color: var(--mwp-accent); }
.mwp-q-card.is-dragging { opacity: 0.4; cursor: grabbing; }
.mwp-q-card.is-drop-target { border-color: var(--mwp-accent); box-shadow: 0 0 0 3px var(--mwp-accent-soft); }
.mwp-q-card.is-busy { opacity: 0.6; pointer-events: none; }

/* meta row */
.mwp-q-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--mwp-ink-soft);
    margin-bottom: 6px;
}
.pill {
    padding: 2px 8px;
    background: #f1f3f6;
    border-radius: 999px;
    font-weight: 600;
}
.pill-easy   { background: #e6f4ea; color: #137333; }
.pill-medium { background: #fef3c7; color: #92400e; }
.pill-hard   { background: #fee2e2; color: #991b1b; }
.pill-themed { background: #fff7ed; color: #9a3412; border: 1px dashed #fdba74; }
.mwp-q-skill { text-transform: none; letter-spacing: 0; font-size: 12px; color: var(--mwp-ink-soft); margin-left: 4px; }

/* stem */
.mwp-q-stem {
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: 17px;
    line-height: 1.5;
    margin-bottom: 6px;
}

/* inline editor */
.mwp-q-edit-wrap { display: flex; flex-direction: column; gap: 8px; margin-bottom: 6px; }
.mwp-q-stem-editor {
    width: 100%;
    padding: 10px;
    border: 2px solid var(--mwp-accent);
    border-radius: 6px;
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: 16px;
    line-height: 1.45;
    background: #fffef0;
    resize: vertical;
}
.mwp-q-edit-buttons { display: flex; gap: 6px; }

/* choices */
.mwp-q-choices {
    margin: 8px 0 0;
    padding-left: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px 16px;
}
.mwp-q-choices li::before { content: "○ "; color: var(--mwp-ink-soft); }
/* Visual multiple-choice: option pictures in bordered cells (no bullet) */
.mwp-q-choices-visual { gap: 10px 16px; counter-reset: vopt; }
.mwp-q-choices-visual li.mwp-choice-img { border: 1px solid var(--mwp-line); border-radius: 8px; padding: 8px 10px; }
.mwp-q-choices-visual li.mwp-choice-img::before { counter-increment: vopt; content: "(" counter(vopt, upper-alpha) ") "; color: var(--mwp-ink-soft); font-weight: 700; }
.mwp-q-choices-visual li.mwp-choice-img svg { display: block; max-width: 100%; height: auto; max-height: 90px; }

/* action row */
.mwp-q-actions { margin-top: 10px; display: flex; gap: 6px; flex-wrap: wrap; }
/* On scaffold cards the actions + answer belong under the "Your Turn" (right)
   column — that's the practice problem the teacher acts on. */
.mwp-q-card-scaffold .mwp-q-actions { justify-content: flex-end; }
.mwp-q-card-scaffold .mwp-q-answer-peek { text-align: right; }
.mwp-q-action {
    padding: 5px 11px;
    border: 1px solid var(--mwp-line);
    border-radius: 6px;
    background: #fafbfc;
    cursor: pointer;
    font-size: 12px;
    color: var(--mwp-ink-soft);
    transition: 0.15s;
}
.mwp-q-action:hover { color: var(--mwp-accent); border-color: var(--mwp-accent); background: #fff; }
.mwp-q-action-primary { background: var(--mwp-accent); color: #fff; border-color: var(--mwp-accent); }
.mwp-q-action-primary:hover { background: #1f3a5f; color: #fff; }
.mwp-q-action-danger { color: var(--mwp-danger); }
.mwp-q-action-danger:hover { background: #fee2e2; border-color: var(--mwp-danger); color: var(--mwp-danger); }

/* answer reveal */
.mwp-q-answer-peek {
    margin-top: 10px;
    padding: 8px 10px;
    background: var(--mwp-accent-soft);
    border-radius: 6px;
    font-size: 14px;
    color: var(--mwp-accent);
    display: none;
}
.mwp-q-card.is-revealed .mwp-q-answer-peek { display: block; }

/* ---------- Scaffold card — two-column layout ---------- */
.pill-scaffolded { background: #ede9fe; color: #5b21b6; }

/* Two boxes sit side-by-side inside the card content area */
.mwp-scaffold-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 10px;
}

.mwp-q-card-scaffold .mwp-scaffold-section {
    padding: 12px 14px;
    border-radius: 8px;
}

/* Left box — light blue, fully solved */
.mwp-q-card-scaffold .mwp-scaffold-worked {
    background: #dbeafe;
    border: 1px solid #93c5fd;
}

/* Right box — white with border, student fills in */
.mwp-q-card-scaffold .mwp-scaffold-practice {
    background: #fff;
    border: 1.5px solid var(--mwp-line);
}

.mwp-scaffold-label {
    font-family: Inter, sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--mwp-ink-soft);
    margin-bottom: 6px;
}

.mwp-scaffold-steps {
    margin: 8px 0 0;
    padding-left: 20px;
    font-size: 13px;
    line-height: 1.65;
}
.mwp-scaffold-step { margin-bottom: 3px; }
.mwp-scaffold-step.has-blank { font-style: italic; color: #374151; }

/* Question visual (array / fraction bar / clock …) inside a scaffold box */
.mwp-scaffold-visual { margin: 8px 0 6px; text-align: center; }
.mwp-scaffold-visual svg { max-width: 100%; height: auto; }

/* Answer chip inside worked-example box */
.mwp-scaffold-answer {
    display: inline-block;
    margin-top: 10px;
    padding: 4px 10px;
    background: rgba(44, 82, 130, 0.12);
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    color: var(--mwp-accent);
}

/* Blank answer line inside your-turn box */
.mwp-scaffold-answer-blank {
    margin-top: 14px;
    border-bottom: 1px solid #374151;
    height: 22px;
    width: 55%;
}

/* Stack on narrow screens */
@media (max-width: 600px) {
    .mwp-scaffold-cols { grid-template-columns: 1fr; }
}

/* ============================================================
   Membership: paywall modal, usage meter, locked-action badges
   ============================================================ */

/* Upgrade / login modal */
.mwp-modal-overlay {
    position: fixed; inset: 0; z-index: 99999;
    background: rgba(18, 22, 30, 0.55);
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
}
.mwp-modal {
    position: relative; background: #fff; border-radius: 14px;
    max-width: 440px; width: 100%; padding: 28px 26px 26px;
    box-shadow: 0 18px 60px rgba(0,0,0,0.3); text-align: center;
}
.mwp-modal-title { font-size: 1.25rem; margin: 0 0 10px; color: #1c1f24; }
.mwp-modal-body { color: #4a5160; line-height: 1.55; margin: 0 0 20px; }
.mwp-modal-close {
    position: absolute; top: 10px; right: 12px; border: 0; background: none;
    font-size: 1.6rem; line-height: 1; color: #9aa1ad; cursor: pointer;
}
.mwp-modal-close:hover { color: #4a5160; }
.mwp-modal .mwp-btn-primary {
    display: inline-block; background: #2563eb; color: #fff; border: 0;
    padding: 11px 22px; border-radius: 9px; font-weight: 600; text-decoration: none;
    cursor: pointer;
}
.mwp-modal .mwp-btn-primary:hover { background: #1d4ed8; }

/* "N of 10 used" meter under the result actions */
.mwp-usage {
    margin-top: 10px; font-size: 0.88rem; color: #6b7280;
}
.mwp-usage-upgrade {
    margin-left: 6px; color: #2563eb; font-weight: 600; text-decoration: none;
}
.mwp-usage-upgrade:hover { text-decoration: underline; }

/* Locked (paid-only) action buttons — still clickable; open the upgrade modal */
.mwp-btn.is-locked, .cta-btn.is-locked {
    position: relative;
}
.mwp-btn.is-locked::after, .cta-btn.is-locked::after {
    content: "\1F512"; /* 🔒 */
    margin-left: 6px; font-size: 0.9em; opacity: 0.7;
}

/* Muted parenthetical hint next to a setting label (e.g. Difficulty) */
.setting-label .setting-hint {
    font-weight: 400;
    font-size: 0.82em;
    text-transform: none;
    letter-spacing: 0;
    color: #8a93a3;
    margin-left: 4px;
}
