/* ==================================================
   LISTMONK ÖFFENTLICH – FINAL (DAU-FREUNDLICH)
   ================================================== */

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  background: #f3f4f6;
  color: #111;
}

/* Hauptcontainer */
.container {
  max-width: 560px;
  margin: 56px auto;
  padding: 36px;
  background: #ffffff;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.10);
}

/* listmonk-Text ausblenden */
header h1,
.header h1 {
  display: none !important;
}

/* ===== LOGO / BANNER – WIRKLICH GROSS ===== */

/* Wrapper sprengen */
header .logo,
header .brand,
header .header-logo {
  width: 100% !important;
  max-width: none !important;
  text-align: center;
  margin-bottom: 32px;
}

/* Bild groß darstellen */
header img,
.header img {
  display: block;
  width: 100% !important;
  max-width: 520px !important;   /* Größe hier steuern */
  height: auto !important;
  margin: 0 auto;
  border-radius: 20px;
}

/* ========================================= */

/* Überschriften */
h1, h2 {
  font-size: 26px;
  margin-bottom: 14px;
}

/* Text */
p {
  font-size: 16px;
  line-height: 1.65;
  color: #444;
}

/* Formularfelder */
input,
select {
  width: 100%;
  padding: 15px;
  font-size: 16px;
  border-radius: 14px;
  border: 1px solid #d1d5db;
  margin-bottom: 20px;
}

/* Fokus */
input:focus,
select:focus {
  outline: none;
  border-color: #4f46e5;
  box-shadow: 0 0 0 4px rgba(79,70,229,0.18);
}

/* Button */
button {
  width: 100%;
  padding: 18px;
  font-size: 17px;
  font-weight: 600;
  border-radius: 16px;
  border: none;
  background: #4f46e5;
  color: #ffffff;
  cursor: pointer;
}

button:hover {
  background: #4338ca;
}

/* ===== LISTEN – CHECKBOX LINKS, LOGIK UNBERÜHRT ===== */

.lists,
fieldset.lists {
  margin-top: 24px;
}

/* Jede Listen-Zeile */
.lists label,
fieldset.lists label {
  display: flex;
  align-items: center;
  gap: 12px;              /* Abstand Checkbox ↔ Text */
  font-size: 15px;
  cursor: pointer;
  padding: 6px 8px;
  border-radius: 10px;
}

/* Checkbox */
.lists input[type="checkbox"],
fieldset.lists input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  cursor: pointer;
}

/* Hover für bessere UX */
.lists label:hover,
fieldset.lists label:hover {
  background: #f8f9fb;
}

/* ================================================ */

/* Footer / Tool-Branding ausblenden */
footer,
.footer,
.powered-by,
.powered,
a[href*="listmonk"],
a[href*="listmonk.app"] {
  display: none !important;
}

/* Mobile Feinschliff */
@media (max-width: 600px) {
  .container {
    margin: 24px;
    padding: 28px;
  }

  header img,
  .header img {
    max-width: 100% !important;
  }
}
