/* Grundlayout */
body { font-family: system-ui, Arial, sans-serif; background: #f4f7fb; margin: 0; }
.container { width: 720px; max-width: 92vw; margin: 40px auto; background: #fff; padding: 24px; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,.06); }
.box { margin: 12px 0; }
.hint { margin-top: 10px; color: #475569; font-size: 14px; }
.count-note { font-size: 12px; color: gray; }

/* Eingaben & Buttons */
input[type=text], textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 16px;
  box-sizing: border-box;
}
button { padding: 12px 16px; border: none; border-radius: 8px; background: #2563eb; color: #fff; font-weight: 600; cursor: pointer; }
button:hover { background: #1d4ed8; }

.green-button {
  background: #22c55e;
}
.green-button:hover {
  background: #16a34a;
}

/* Chatverlauf */
.chat-history {
  max-height: 300px;
  overflow-y: auto;
  border: 1px solid #e2e8f0;
  padding: 10px;
  border-radius: 8px;
  background: #fff;
  font-size: 14px;
}
.chat-row { margin-bottom: 8px; }
.chat-label { color: #444; }
.chat-bubble { white-space: pre-wrap; margin-left: 5px; }

/* Top-right Button (falls verwendet) */
.container { position: relative; }
.top-right-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #22c55e;
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(34,197,94,0.25);
  transition: transform .06s ease, box-shadow .12s ease, background .2s ease;
}
.top-right-btn:hover { background: #16a34a; box-shadow: 0 6px 20px rgba(22,163,74,0.28); transform: translateY(-1px); }
.top-right-btn:active { transform: translateY(0); box-shadow: 0 3px 10px rgba(22,163,74,0.22); }




/* Container für jeden Gefährdungsblock */
.hazard-block {
  margin: 20px 0;
  padding: 16px 18px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #f9fafb;
}

/* Überschrift der Gefährdung */
.hazard {
  font-size: 16px;
  font-weight: 700;
  color: #1e3a8a;   /* schönes Blau */
  margin-bottom: 10px;
}

/* Einzelne Maßnahmen */
.measure {
  margin: 4px 0;
  padding-left: 2.2em;    /* Platz für Label */
  text-indent: -2.2em;    /* Label nach links raus */
  line-height: 1.5;
  font-size: 14px;
  color: #374151;
}

/* Label (S:, T:, O:, P:, U:) fett + grau */
.measure .label {
  font-weight: 700;
  color: #111827;
  margin-right: 4px;
}

/* Quellenliste */
.sources {
  margin-top: 12px;
  padding-left: 20px;
  font-size: 14px;
  color: #374151;
}

.sources li {
  margin: 2px 0;
}

/* Loader Overlay */
#loader {
  display: none;               /* standardmäßig aus */
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.8);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #444;
}
#loader .loader-text { margin-left: 10px; }

/* Spinner */
.spinner {
  border: 6px solid #f3f3f3;
  border-top: 6px solid #e60000; /* rote Firmenfarbe */
  border-radius: 50%;
  width: 32px;
  height: 32px;
  animation: spin 1s linear infinite;
}
@keyframes spin { 0% { transform: rotate(0deg);} 100% { transform: rotate(360deg);} }


/* Container für jeden Gefährdungsblock */
.hazard-block {
  margin: 20px 0;
  padding: 16px 18px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #f9fafb;
}

/* Überschrift der Gefährdung */
.hazard {
  font-size: 16px;
  font-weight: 700;
  color: #1e3a8a;   /* schönes Blau */
  margin-bottom: 10px;
}

/* Einzelne Maßnahmen */
.measure {
  margin: 4px 0;
  padding-left: 2.2em;    /* Platz für Label */
  text-indent: -2.2em;    /* Label nach links raus */
  line-height: 1.5;
  font-size: 14px;
  color: #374151;
}

/* Label (S:, T:, O:, P:, U:) fett + grau */
.measure .label {
  font-weight: 700;
  color: #111827;
  margin-right: 4px;
}

/* Quellenliste */
.sources {
  margin-top: 12px;
  padding-left: 20px;
  font-size: 14px;
  color: #374151;
}

.sources li {
  margin: 2px 0;
}


/* Kompakter Quellenblock */
.gbu-sources {
  font-size: 13px;
  line-height: 1.3;
  margin-top: 10px;
  padding-left: 18px; /* Einrückung der Punkte */
}

.gbu-sources li {
  margin: 2px 0;   /* engerer Zeilenabstand */
  padding: 0;
}


/* Überschrift im Quellenbereich etwas dichter */
.gbu-output h3 + .gbu-sources,
.gbu-output h3:has(+ .gbu-sources) {
  margin-top: 4px;        /* falls :has unterstützt wird — ansonsten greift die .gbu-sources-Regel oben */
}

/* Falls deine generischen h3-Karten große Margins haben, hier eine Sonderregel für den Quellenblock */
.gbu-output h3.sources-title {
  margin-bottom: 6px;     /* enger unter der Quellen-Überschrift */
}
