/* Fonts (optional — Pfade ggf. anpassen) */
@font-face {
  font-family: SandboxVR;
  src: url("/vip/assets/fonts/sandboxvr/sandboxvr-regular.woff2") format("woff2"),
       url("/vip/assets/fonts/sandboxvr/sandboxvr-regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: SandboxVR;
  src: url("/vip/assets/fonts/sandboxvr/sandboxvr-medium.woff2") format("woff2"),
       url("/vip/assets/fonts/sandboxvr/sandboxvr-medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: SandboxVR;
  src: url("/vip/assets/fonts/sandboxvr/sandboxvr-bold.woff2") format("woff2"),
       url("/vip/assets/fonts/sandboxvr/sandboxvr-bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

/* Scope ALLES unter .nle-wrap, damit Theme-Stile unberührt bleiben */
.nle-wrap, .nle-wrap * , .nle-wrap *::before, .nle-wrap *::after { box-sizing: border-box; }

.nle-wrap {
  font-family: SandboxVR, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #fff;
  background: none;         /* eigener dunkler Hintergrund im Container */
  margin: 0 auto;
  padding: 0px!important;
  border-radius: 12px;      /* damit sich der dunkle Block absetzt */
}

/* Karte / innerer Container */
.nle-card {
  background: transparent;  /* wir bleiben auf schwarz */
  padding: 0;
}

/* Headline (überschreibbar via Shortcode title="...") */
.nle-card h2 {
  margin: 0 0 16px 0;
  font-weight: 700;
  color: #fff;
}

/* Felder */
.nle-field { margin: 25px 0; }
.nle-field label {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
  color: #ccc;
  font-weight: 700;
}

/* Inputs */
.nle-field input,
.nle-field select,
.nle-field textarea {
  width: 100% !important;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #444;
  background: #222;
  color: #ccc;
  font-size: 16px;
  box-shadow: none;
  outline: none;
}

/* Placeholder heller */
.nle-field input::placeholder,
.nle-field textarea::placeholder {
  color: #888;
}

/* Fokus neutral (kein farbiger Schein) */
.nle-field input:focus,
.nle-field select:focus,
.nle-field textarea:focus {
  outline: none;
  box-shadow: none;
  border-color: #555;
}

/* Mehrfach-Optionen */
.nle-choices { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 6px; }
.nle-choice {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 6px 10px;
  background: #fff;
  color: #111;
}

/* Meldungen */
.nle-message {
  background: #15321a;
  border: 1px solid #2e7d32;
  padding: 12px;
  border-radius: 10px;
  margin: 12px 0;
  color: #cfe9d5;
}
.nle-errors {
  background: #3a1620;
  border: 1px solid #b71c1c;
  padding: 12px;
  border-radius: 10px;
  margin: 12px 0;
  color: #f0c8ce;
}
.nle-errors div { margin: 4px 0; }

/* Validierungsfehler an Inputs (falls per JS/Server Klasse gesetzt) */
.nle-field .error {
  outline: 2px solid #b71c1c;
}

/* Button */
.nle-btn {
  width: 100%!important;
  margin-top: 16px!important;
  padding: 12px 16px!important;
  border: 0!important;
  border-radius: 24px!important;
  background: #008FFF!important;
  color: #fff!important;
  cursor: pointer!important;
  font-weight: 700!important;
  font-size: 16px!important;
}
.nle-btn:hover {
  width: 100%!important;
  margin-top: 16px!important;
  padding: 12px 16px!important;
  border: 0!important;
  border-radius: 24px!important;
  background: #008FFF!important;
  color: #fff!important;
  cursor: pointer!important;
  font-weight: 700!important;
  font-size: 16px!important;
}
.nle-btn:disabled { opacity: 0.6; cursor: not-allowed; }

/* Datenschutz */
.nle-privacy { margin-top: 12px; }
.nle-privacy label { display: block; gap: 8px; align-items: flex-start; }
.nle-privacy input[type="checkbox"] { margin-top: 5px; width: auto !important; }
.nle-privacy span { font-weight: normal; font-size: .9em; }
.nle-privacy a { color: #008FFF; text-decoration: none; }

/* Optional: ein „Selector“-Look, falls du später im Plugin Tabs/Filter einbaust */
.nle-selector { display: flex; gap: 12px; margin: 16px 0; flex-wrap: wrap; }
.nle-selector a {
  display: inline-block; padding: 12px 16px; border-radius: 8px;
  background: #222; color: #ccc; text-decoration: none!important;
}
.nle-selector a.active { outline: 0px solid #4b6bff; }

.nle-required {
  color: #e63946;   /* Rot */
  margin-left: 4px;
  font-weight: bold;
}