/* =========================================================
   pages/email-templates.css
   ---------------------------------------------------------
   Email template admin page styles.
   ========================================================= */

/* =========================================================
   20) EMAIL TEMPLATES
   --------------------------------------------------------- */

.nn-email-templates {
  display: grid;
  gap: 16px;
}

.nn-email-templates__notice {
  background: #f6fffb;
  border: 1px solid #b8e6d3;
  color: #0f6b4b;
  font-weight: 600;
}

.nn-email-templates__form {
  display: grid;
  gap: 16px;
}

.nn-email-templates__group h2 {
  margin: 0 0 14px;
}

.nn-email-templates__field {
  display: grid;
  gap: 6px;
  margin-bottom: 16px;
}

.nn-email-templates__field:last-child {
  margin-bottom: 0;
}

.nn-email-templates__field label {
  font-weight: 700;
}

.nn-email-templates__field input,
.nn-email-templates__field textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--card);
  color: var(--text);
  font: inherit;
}

.nn-email-templates__field textarea {
  resize: vertical;
  min-height: 120px;
}

.nn-email-templates__tokens {
  color: var(--muted);
  font-size: 0.92rem;
}

.nn-email-templates__tokens code {
  display: inline-block;
  margin: 2px 6px 2px 0;
  padding: 2px 6px;
  border-radius: 6px;
  background: #f3f4f7;
}

.nn-email-templates__actions {
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 767px) {
  .nn-email-templates__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

