/* ─────────────────────────────────────────────────────────────
   NPC REPAIR — Form "Vendi il tuo device" + Admin Settings
───────────────────────────────────────────────────────────── */

/* ══════════════════════════════════════════════════════════
   WRAPPER FORM
══════════════════════════════════════════════════════════ */
.npc-vendi-wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: 40px 20px 60px;
  font-family: var(--npc-font-b);
  color: var(--npc-text);
}

/* ══════════════════════════════════════════════════════════
   PROGRESS INDICATOR
══════════════════════════════════════════════════════════ */
.npc-vendi-progress-wrap {
  margin-bottom: 40px;
}

.npc-vendi-steps-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-bottom: 16px;
}

.npc-vstep-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: default;
  min-width: 64px;
  transition: opacity 0.3s;
  opacity: 0.4;
}

.npc-vstep-dot.active,
.npc-vstep-dot.done {
  opacity: 1;
}

.npc-vstep-num {
  width: 36px;
  height: 36px;
  border: 1px solid var(--npc-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--npc-font-h);
  font-size: 13px;
  font-weight: 700;
  color: var(--npc-muted);
  transition: all 0.3s;
  position: relative;
  z-index: 1;
  background: var(--npc-bg);
}

.npc-vstep-dot.active .npc-vstep-num {
  border-color: var(--npc-cyan);
  color: var(--npc-cyan);
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.3);
}

.npc-vstep-dot.done .npc-vstep-num {
  border-color: var(--npc-magenta);
  color: var(--npc-magenta);
  background: rgba(255, 45, 120, 0.08);
}

.npc-vstep-dot.done .npc-vstep-num::after {
  content: '✓';
  position: absolute;
  font-size: 14px;
}

.npc-vstep-dot.done .npc-vstep-num {
  color: transparent;
}

.npc-vstep-dot.done .npc-vstep-num::after {
  color: var(--npc-magenta);
}

.npc-vstep-lbl {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--npc-muted);
  text-align: center;
  white-space: nowrap;
}

.npc-vstep-dot.active .npc-vstep-lbl {
  color: var(--npc-cyan);
}

.npc-vstep-dot.done .npc-vstep-lbl {
  color: var(--npc-magenta);
}

/* Linea connettore tra step */
.npc-vstep-line {
  flex: 1;
  height: 1px;
  background: var(--npc-border);
  margin-top: 18px;
  position: relative;
  overflow: hidden;
  min-width: 20px;
}

.npc-vstep-line-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0%;
  background: var(--npc-magenta);
  transition: width 0.5s ease;
}

/* Barra progresso sotto */
.npc-vendi-bar-wrap {
  height: 2px;
  background: rgba(0, 212, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.npc-vendi-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--npc-cyan), var(--npc-magenta));
  transition: width 0.5s ease;
  box-shadow: 0 0 8px rgba(0, 212, 255, 0.4);
}

/* ══════════════════════════════════════════════════════════
   STEP PANELS — ANIMAZIONI
══════════════════════════════════════════════════════════ */
.npc-vstep-panel {
  display: none;
}

.npc-vstep-panel.active {
  display: block;
  animation: npcSlideIn 0.35s ease;
}

.npc-vstep-panel.leaving {
  animation: npcSlideOut 0.25s ease forwards;
}

.npc-vstep-panel.entering-back {
  animation: npcSlideInBack 0.35s ease;
}

@keyframes npcSlideIn {
  from {
    opacity: 0;
    transform: translateX(28px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes npcSlideOut {
  from {
    opacity: 1;
    transform: translateX(0);
  }

  to {
    opacity: 0;
    transform: translateX(-28px);
  }
}

@keyframes npcSlideInBack {
  from {
    opacity: 0;
    transform: translateX(-28px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ══════════════════════════════════════════════════════════
   STEP HEADER
══════════════════════════════════════════════════════════ */
.npc-vstep-header {
  margin-bottom: 28px;
}

.npc-vstep-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--npc-magenta);
  border: 1px solid var(--npc-magenta);
  padding: 3px 10px;
  margin-bottom: 10px;
  font-weight: 600;
}

.npc-vstep-title {
  font-family: var(--npc-font-h) !important;
  font-size: 26px !important;
  font-weight: 900 !important;
  color: var(--npc-text) !important;
  margin: 0 !important;
  line-height: 1.2 !important;
}

/* ══════════════════════════════════════════════════════════
   CAMPI GENERICI
══════════════════════════════════════════════════════════ */
.npc-vfield {
  margin-bottom: 24px;
}

.npc-vfield-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 0;
}

.npc-vfield-row .npc-vfield {
  margin-bottom: 24px;
}

.npc-vlabel {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--npc-muted);
  margin-bottom: 10px;
}

.npc-field-err {
  display: none;
  font-size: 12px;
  color: var(--npc-magenta);
  margin-top: 6px;
  letter-spacing: 0.5px;
}

.npc-vfield.has-error .npc-field-err {
  display: block;
}

.npc-vfield.has-error .npc-input,
.npc-vfield.has-error .npc-radio-grid,
.npc-vfield.has-error .npc-chips-wrap,
.npc-vfield.has-error .npc-radio-list {
  border-color: var(--npc-magenta) !important;
}

.npc-vfield.has-error .npc-input {
  box-shadow: 0 0 0 1px rgba(255, 45, 120, 0.2);
}

/* ══════════════════════════════════════════════════════════
   RADIO CARD GRID (Marche)
══════════════════════════════════════════════════════════ */
.npc-radio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 8px;
}

.npc-radio-card {
  border: 1px solid var(--npc-border);
  padding: 10px 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--npc-muted);
  transition: all 0.2s ease;
  position: relative;
  user-select: none;
  background: rgba(0, 212, 255, 0.02);
}

.npc-radio-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.npc-radio-card:hover {
  border-color: rgba(0, 212, 255, 0.4);
  color: var(--npc-text);
}

.npc-radio-card:has(input:checked) {
  border-color: var(--npc-cyan);
  background: rgba(0, 212, 255, 0.08);
  color: var(--npc-cyan);
  box-shadow: 0 0 0 1px var(--npc-cyan);
}

/* Variante compatta (contatto pref) */
.npc-radio-inline {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.npc-radio-card.compact {
  padding: 8px 18px;
  min-width: 100px;
}

/* ══════════════════════════════════════════════════════════
   CHIP (Memoria)
══════════════════════════════════════════════════════════ */
.npc-chips-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.npc-chip {
  position: relative;
  cursor: pointer;
  user-select: none;
}

.npc-chip input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.npc-chip span {
  display: inline-block;
  border: 1px solid var(--npc-border);
  padding: 6px 16px;
  font-family: var(--npc-font-h);
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--npc-muted);
  transition: all 0.2s;
  background: rgba(0, 212, 255, 0.02);
}

.npc-chip:hover span {
  border-color: rgba(0, 212, 255, 0.4);
  color: var(--npc-text);
}

.npc-chip:has(input:checked) span {
  border-color: var(--npc-magenta);
  background: rgba(255, 45, 120, 0.08);
  color: var(--npc-magenta);
  box-shadow: 0 0 0 1px var(--npc-magenta);
}

/* ══════════════════════════════════════════════════════════
   RADIO LIST (Stato scocca, schermo, funziona, blocco)
══════════════════════════════════════════════════════════ */
.npc-radio-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.npc-radio-row {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  padding: 10px 14px;
  border: 1px solid var(--npc-border);
  transition: all 0.2s;
  user-select: none;
  background: rgba(0, 212, 255, 0.02);
}

.npc-radio-row input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.npc-ri {
  width: 16px;
  height: 16px;
  border: 1px solid var(--npc-border);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  transition: all 0.2s;
}

.npc-radio-row:hover {
  border-color: rgba(0, 212, 255, 0.4);
  color: var(--npc-text);
}

.npc-radio-row:has(input:checked) {
  border-color: var(--npc-cyan);
  background: rgba(0, 212, 255, 0.06);
}

.npc-radio-row:has(input:checked) .npc-ri {
  border-color: var(--npc-cyan);
  background: var(--npc-cyan);
  box-shadow: 0 0 6px rgba(0, 212, 255, 0.4);
}

.npc-radio-row:has(input:checked) .npc-ri::after {
  content: '';
  position: absolute;
  inset: 3px;
  background: var(--npc-bg);
  border-radius: 50%;
}

/* ══════════════════════════════════════════════════════════
   CHECKBOX GRID (Problemi, Accessori)
══════════════════════════════════════════════════════════ */
.npc-check-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 8px;
}

.npc-check-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--npc-border);
  cursor: pointer;
  transition: all 0.2s;
  font-size: 14px;
  color: var(--npc-muted);
  user-select: none;
  background: rgba(0, 212, 255, 0.02);
}

.npc-check-card input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.npc-cb {
  width: 16px;
  height: 16px;
  border: 1px solid var(--npc-border);
  flex-shrink: 0;
  position: relative;
  transition: all 0.2s;
}

.npc-check-card:hover {
  border-color: rgba(0, 212, 255, 0.4);
  color: var(--npc-text);
}

.npc-check-card:has(input:checked) {
  border-color: var(--npc-cyan);
  background: rgba(0, 212, 255, 0.06);
  color: var(--npc-cyan);
}

.npc-check-card:has(input:checked) .npc-cb {
  border-color: var(--npc-cyan);
  background: var(--npc-cyan);
}

.npc-check-card:has(input:checked) .npc-cb::after {
  content: '✓';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #000;
  font-weight: 900;
}

/* ══════════════════════════════════════════════════════════
   PRIVACY CONSENT
══════════════════════════════════════════════════════════ */
.npc-privacy-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  padding: 12px 14px;
  border: 1px solid var(--npc-border);
  transition: border-color 0.2s;
  background: rgba(0, 212, 255, 0.02);
}

.npc-privacy-row input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.npc-privacy-row .npc-cb {
  margin-top: 2px;
  flex-shrink: 0;
}

.npc-privacy-row:has(input:checked) {
  border-color: var(--npc-cyan);
}

.npc-privacy-row:has(input:checked) .npc-cb {
  border-color: var(--npc-cyan);
  background: var(--npc-cyan);
}

.npc-privacy-row:has(input:checked) .npc-cb::after {
  content: '✓';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #000;
  font-weight: 900;
}

.npc-privacy-txt {
  font-size: 13px;
  color: var(--npc-muted);
  line-height: 1.5;
}

.npc-vfield.has-error .npc-privacy-row {
  border-color: var(--npc-magenta) !important;
}

/* ══════════════════════════════════════════════════════════
   NAVIGAZIONE FORM
══════════════════════════════════════════════════════════ */
.npc-vendi-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 32px;
  gap: 12px;
}

.npc-vstep-prev {
  display: none;
}

.npc-vstep-submit {
  display: none;
}

.npc-vendi-err-msg {
  margin-top: 12px;
  font-size: 13px;
  color: var(--npc-magenta);
  letter-spacing: 0.5px;
  text-align: center;
  min-height: 20px;
}

/* ══════════════════════════════════════════════════════════
   SUCCESS STATE
══════════════════════════════════════════════════════════ */
.npc-vendi-success {
  display: none;
  text-align: center;
  padding: 60px 20px;
  animation: npcSlideIn 0.4s ease;
}

.npc-success-icon {
  width: 64px;
  height: 64px;
  border: 2px solid var(--npc-cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--npc-cyan);
  margin: 0 auto 24px;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
  animation: npc-pulse 2s ease-in-out infinite;
}

.npc-success-title {
  font-family: var(--npc-font-h) !important;
  font-size: 28px !important;
  color: var(--npc-cyan) !important;
  margin: 0 0 12px !important;
}

.npc-success-msg {
  color: var(--npc-muted);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* ══════════════════════════════════════════════════════════
   PAGINA VENDI — LAYOUT GENERALE
══════════════════════════════════════════════════════════ */
.npc-vendi-page-wrap {
  background: var(--npc-bg);
  padding: 40px 0;
}

.npc-vendi-page-header {
  text-align: center;
  padding: 40px 32px 0;
  max-width: 700px;
  margin: 0 auto;
}

.npc-vendi-page-header h1 {
  font-family: var(--npc-font-h) !important;
  font-size: 32px !important;
  font-weight: 900 !important;
  color: var(--npc-text) !important;
  margin: 0 0 12px !important;
}

.npc-vendi-page-header p {
  color: var(--npc-muted);
  font-size: 16px;
  margin: 0 0 8px;
}

/* ══════════════════════════════════════════════════════════
   SEZIONE CTA "VENDI" — HOMEPAGE
══════════════════════════════════════════════════════════ */
.npc-sell-section {
  padding: 60px 32px;
  background: var(--npc-surface);
  border-top: 1px solid var(--npc-border);
  border-bottom: 1px solid var(--npc-border);
  position: relative;
  overflow: hidden;
}

.npc-sell-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(255, 45, 120, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.npc-sell-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.npc-sell-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--npc-magenta);
  border: 1px solid var(--npc-magenta);
  padding: 4px 12px;
  margin-bottom: 16px;
  font-weight: 600;
}

.npc-sell-title {
  font-family: var(--npc-font-h) !important;
  font-size: 32px !important;
  font-weight: 900 !important;
  line-height: 1.15 !important;
  margin: 0 0 16px !important;
  color: var(--npc-text) !important;
}

.npc-sell-title span {
  color: var(--npc-magenta);
}

.npc-sell-desc {
  color: var(--npc-muted);
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 24px !important;
}

.npc-sell-list {
  list-style: none;
  margin: 0 0 32px !important;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.npc-sell-list li {
  font-size: 14px;
  color: var(--npc-text);
  display: flex;
  align-items: center;
  gap: 10px;
}

.npc-sell-list li::before {
  content: '▸';
  color: var(--npc-magenta);
  font-size: 12px;
  flex-shrink: 0;
}

.btn-magenta,
a.btn-magenta {
  background: var(--npc-magenta);
  color: #fff !important;
  padding: 14px 32px;
  font-family: var(--npc-font-h);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  border: none;
  cursor: pointer;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  text-transform: uppercase;
  text-decoration: none !important;
  display: inline-block;
  transition: box-shadow 0.2s ease, opacity 0.2s ease;
}

.btn-magenta:hover,
a.btn-magenta:hover {
  box-shadow: 0 0 28px rgba(255, 45, 120, 0.5);
  opacity: 0.95;
}

/* Badge visivo a destra */
.npc-sell-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.npc-sell-badge {
  width: 160px;
  height: 160px;
  border: 2px solid var(--npc-magenta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  animation: npc-pulse-magenta 3s ease-in-out infinite;
}

.npc-sell-badge::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255, 45, 120, 0.25);
  border-radius: 50%;
}

.npc-sell-badge-euro {
  font-family: var(--npc-font-h);
  font-size: 48px;
  font-weight: 900;
  color: var(--npc-magenta);
  line-height: 1;
}

.npc-sell-badge-label {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--npc-muted);
  margin-top: 4px;
  line-height: 1.4;
}

@keyframes npc-pulse-magenta {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 45, 120, 0.3);
  }

  50% {
    box-shadow: 0 0 0 14px rgba(255, 45, 120, 0);
  }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .npc-vendi-wrap {
    padding: 24px 16px 40px;
  }

  .npc-vstep-lbl {
    display: none;
  }

  .npc-vstep-dot {
    min-width: 40px;
  }

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

  .npc-radio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .npc-check-grid {
    grid-template-columns: 1fr 1fr;
  }

  .npc-sell-inner {
    grid-template-columns: 1fr;
  }

  .npc-sell-visual {
    display: none;
  }

  .npc-vendi-nav {
    flex-direction: column-reverse;
    gap: 8px;
  }

  .npc-vendi-nav .btn-primary,
  .npc-vendi-nav .btn-secondary,
  .npc-vendi-nav .npc-submit {
    width: 100%;
    text-align: center;
  }
}

/* ══════════════════════════════════════════════════════════
   ADMIN SETTINGS PAGE
══════════════════════════════════════════════════════════ */
.npc-admin-wrap {
  max-width: 1200px;
}

.npc-admin-wrap .npc-admin-title {
  font-family: 'Orbitron', 'Courier New', monospace;
  font-size: 22px !important;
  font-weight: 900 !important;
  color: #1d2327;
  letter-spacing: 3px;
  margin-bottom: 4px !important;
}

.npc-admin-wrap .npc-admin-title span {
  color: #e52d78;
}

.npc-admin-subtitle {
  color: #646970;
  margin-bottom: 24px;
}

.npc-admin-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
  align-items: start;
  margin-top: 20px;
}

.npc-admin-card {
  background: #fff;
  border: 1px solid #c3c4c7;
  border-radius: 4px;
  padding: 24px;
  margin-bottom: 20px;
}

.npc-admin-card--info {
  background: #f8f9fa;
}

.npc-admin-card-title {
  font-size: 15px !important;
  font-weight: 600 !important;
  margin: 0 0 6px !important;
  padding-bottom: 10px !important;
  border-bottom: 1px solid #e0e0e0 !important;
}

.npc-admin-card-desc {
  color: #646970;
  font-size: 13px;
  margin-bottom: 20px !important;
}

/* Gruppi di opzioni */
.npc-admin-group {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #f0f0f0;
}

.npc-admin-group:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.npc-admin-group-label {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #1d2327 !important;
  margin: 0 0 10px !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.npc-admin-sortable {
  list-style: none;
  margin: 0 0 8px !important;
  padding: 0;
}

.npc-admin-opt-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  background: #f8f9fa;
  padding: 4px 8px;
  border: 1px solid #e0e0e0;
  border-radius: 3px;
}

.npc-admin-opt-item.ui-sortable-helper {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  background: #fff;
}

.npc-admin-handle {
  cursor: grab;
  color: #aaa;
  font-size: 16px;
  line-height: 1;
  padding: 2px 4px;
  flex-shrink: 0;
}

.npc-admin-handle:active {
  cursor: grabbing;
}

.npc-admin-opt-input {
  flex: 1;
  border: none !important;
  background: transparent !important;
  padding: 4px !important;
  font-size: 13px !important;
  box-shadow: none !important;
  outline: none;
}

.npc-admin-opt-input:focus {
  background: #fff !important;
  border: 1px solid #2271b1 !important;
  border-radius: 2px;
}

.npc-admin-remove {
  background: none !important;
  border: none !important;
  color: #cc3333 !important;
  cursor: pointer !important;
  font-size: 14px !important;
  padding: 2px 6px !important;
  line-height: 1;
  box-shadow: none !important;
  flex-shrink: 0;
}

.npc-admin-remove:hover {
  color: #a00 !important;
}

.npc-admin-add-btn {
  font-size: 12px;
  color: #2271b1;
  background: none;
  border: 1px dashed #c3c4c7;
  padding: 4px 12px;
  cursor: pointer;
  border-radius: 3px;
  width: 100%;
  margin-top: 4px;
  transition: all 0.2s;
}

.npc-admin-add-btn:hover {
  border-color: #2271b1;
  background: #f0f6fc;
}

/* Email settings */
.npc-admin-setting {
  margin-bottom: 20px;
}

.npc-admin-label {
  display: block;
  font-weight: 600;
  margin-bottom: 4px;
  font-size: 13px;
}

.npc-admin-setting .description {
  color: #646970;
  font-size: 12px;
  margin-bottom: 6px;
}

/* Shortcode box */
.npc-admin-shortcode-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #1e1e1e;
  padding: 10px 14px;
  border-radius: 4px;
  margin-top: 8px;
}

.npc-admin-shortcode-box code {
  color: #00d4ff;
  font-size: 14px;
  font-family: monospace;
  flex: 1;
  background: none;
}

.npc-admin-copy {
  background: #2271b1;
  color: #fff;
  border: none;
  padding: 4px 10px;
  font-size: 12px;
  border-radius: 3px;
  cursor: pointer;
  flex-shrink: 0;
}

.npc-admin-copy.copied {
  background: #00a32a;
}

.npc-admin-submit-row {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #c3c4c7;
}