/* Layout-Grundstruktur */
.formular-bereich {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 1.2rem;
  margin-top: 0.5rem;
  align-items: flex-start;
}

.formular-links,
.formular-mitte,
.formular-rechts {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.formular-links {
  flex: 1 1 33%;
  padding-left: 0.5rem;
}

.formular-mitte {
  flex: 1 1 33%;
}

.formular-rechts {
  flex: 1 1 33%;
  background: #faeaea;
  border: 2px solid #c4002f;
  border-radius: 10px;
  padding: 1rem;
  margin-right: 1rem;
  margin-top: 0;
}

.notfall-title {
  font-size: 1.6rem;
  font-weight: bold;
  color: #0e4b66;
  margin-bottom: 0.5rem;
}

.notfall-sub {
  font-size: 1.25rem;
  font-weight: bold;
  color: #0e4b66;
  background: #d8e6ee;
  border: 2px solid #0e4b66;
  border-radius: 6px;
  padding: 0.4rem 1rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.notfall-checklist {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.notruf-block {
  background: #e4ecf5;
  border: 2px solid #0e4b66;
  border-radius: 8px;
  padding: 0.5rem 0.8rem;
  font-size: 0.9rem;
  line-height: 1.4;
}

textarea#dokuText,
textarea#anmerkungText {
  width: 100%;
  padding: 0.4rem;
  border-radius: 4px;
  border: 1px solid #ccc;
  font-family: inherit;
  font-size: 0.95rem;
  resize: vertical;
}

.doku-buttons {
  display: flex;
  gap: 0.8rem;
  margin-top: 0.5rem;
}

.btn-schnell {
  background-color: #c4002f;
  color: white;
  border: none;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: bold;
  cursor: pointer;
}

.btn-blass {
  background-color: #d8e6ee;
  color: #0e4b66;
  border: none;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: bold;
  cursor: pointer;
}

.hidden {
  display: none;
}

label input[type="radio"],
label input[type="checkbox"] {
  margin-right: 0.4rem;
}

label {
  display: inline-flex;
  align-items: center;
  margin-right: 1rem;
  margin-bottom: 0.3rem;
  gap: 0.2rem;
  font-size: 0.95rem;
  line-height: 1.3;
}

.alarmierungs-block {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: flex-start;
  margin-bottom: 0.6rem;
}

.alarmierungs-block label {
  flex-direction: row;
  align-items: center;
  font-weight: normal;
  gap: 0.5rem;
}

.alarmierungs-block select,
.alarmierungs-block input[type="text"] {
  margin-left: 0.5rem;
  margin-top: 0;
}

select,
input[type="text"],
input[type="number"] {
  margin-top: 0.2rem;
  padding: 0.3rem;
  font-size: 0.9rem;
  width: auto;
  max-width: 100%;
  box-sizing: border-box;
}

input.messwert {
  margin-left: 0.4rem;
  width: 90px;
}
