/* ===== Global ===== */

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #f8fafc;
}


* {
  box-sizing: border-box;
}

/* ===== OP-Formular ===== */

.op-form {
  max-width: 800px;
  margin: 0 auto;
  font-family: inherit;
}

.op-block {
  border: 1px solid #e5e7eb;
  padding: 24px;
  margin-bottom: 28px;
  border-radius: 12px;
  background-color: #ffffff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.04);
}

.op-block h3 {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 600;
  color: #111827;
}

.form-group {
  margin-bottom: 18px;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

input[type="text"],
input[type="email"],
input[type="date"],
input[type="password"],
select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

fieldset {
  border: 1px solid #ccc;
  padding: 15px;
  border-radius: 4px;
}

legend {
  font-weight: 600;
  padding: 0 8px;
}

.checkbox {
  display: block;
  margin-bottom: 8px;
  font-weight: normal;
}

.primary-btn {
  margin-top: 20px;
  padding: 12px 22px;
  background-color: #2c6ed5;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 15px;
  cursor: pointer;
}

.primary-btn:hover {
  background-color: #245bb5;
}

.secondary-btn {
  margin-bottom: 20px;
  padding: 10px 18px;
  background-color: #eee;
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
}

.remove-op {
  margin-bottom: 15px;
  padding: 6px 12px;
  background-color: #e74c3c;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 13px;
  cursor: pointer;
}

.remove-op:hover {
  background-color: #c0392b;
}

/* ===== Admin: Sterilkits ===== */

.admin-card {
  max-width: 600px;
  margin: 0 auto 40px;
  padding: 28px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background-color: #ffffff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.04);
}

.add-kit-form {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.add-kit-form input {
  flex: 1;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.add-kit-form button {
  padding: 10px 16px;
  border: none;
  border-radius: 4px;
  background-color: #2c6ed5;
  color: white;
  cursor: pointer;
}

.add-kit-form button:hover {
  background-color: #245bb5;
}

.kit-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.kit-list li {
  padding: 14px 0;
  border-bottom: 1px solid #e5e7eb;
}

.kit-list li:last-child {
  border-bottom: none;
}

/* Anzeige-Zeile */
.view-mode {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* linker Text */
.kit-text {
  font-size: 16px;
  font-weight: 500;
  color: #111827;
}

/* rechter Aktionsbereich */
.actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Icon-Buttons */
.icon-btn {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
}

/* Bearbeiten */
.edit-btn {
  color: #2563eb;
}

.edit-btn:hover {
  color: #1d4ed8;
}

/* Löschen */
.delete-btn {
  color: #ef4444;
  text-decoration: none;
}

.delete-btn:hover {
  color: #dc2626;
}

/* Edit-Modus */
.edit-mode {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.edit-mode input {
  flex: 1;
  padding: 8px 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.save-btn {
  background: #2563eb;
  color: #fff;
  border: none;
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
}

.save-btn:hover {
  background: #1d4ed8;
}

.cancel-btn {
  background: none;
  border: none;
  color: #6b7280;
  cursor: pointer;
}

/* Feedback & Utility */

.success-msg {
  background: #e6f4ea;
  color: #2e7d32;
  padding: 10px 12px;
  border-radius: 4px;
  margin-bottom: 15px;
}

.error-msg {
  background: #fdecea;
  color: #c62828;
  padding: 10px 12px;
  border-radius: 4px;
  margin-bottom: 15px;
}

.empty-hint {
  color: #777;
  font-style: italic;
}

.back-link {
  display: inline-block;
  margin-top: 15px;
}

.hidden {
  display: none;
}

/* Feedback Fade-Out */
.feedback-msg {
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.feedback-msg.fade-out {
  opacity: 0;
  transform: translateY(-5px);
}

/* Admin-Titel */
.admin-title {
  max-width: 600px;
  margin: 40px auto 16px;
  text-align: center;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.3px;
  color: #1f2937;
}

/* dezente Linie unter der Überschrift */
.admin-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  margin: 10px auto 0;
  background-color: #2c6ed5;
  border-radius: 2px;
}

/* ===== Formular-Titel (OP & Admin) ===== */

.form-title {
  max-width: 800px;
  margin: 40px auto 24px;
  text-align: center;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.3px;
  color: #1f2937;
  position: relative;
}

.form-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  margin: 10px auto 0;
  background-color: #2c6ed5;
  border-radius: 2px;
}

/* ===== Top-Bar & Logout ===== */

.top-bar {
  max-width: 1100px;
  margin: 20px auto 0;
  display: flex;
  justify-content: flex-end;
}

.logout-btn {
  padding: 8px 14px;
  background-color: #f3f4f6;
  color: #374151;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
}

.logout-btn:hover {
  background-color: #e5e7eb;
  color: #111827;
}

/* ===== Back-Navigation ===== */

.back-bar {
  max-width: 600px;
  margin: 20px auto 0;
}

.back-btn {
  display: inline-block;
  padding: 8px 14px;
  background-color: #f3f4f6;
  color: #374151;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 14px;
  text-decoration: none;
}

.back-btn:hover {
  background-color: #e5e7eb;
  color: #111827;
}

/* Button-Leiste im OP-Formular */
.form-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 20px;
}

/* Link wie Button darstellen */
.nav-btn {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.nav-btn {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

/* Footer: Buttons bündig ausrichten (Overrides) */
.form-footer .primary-btn {
  margin-top: 0;
}

.form-footer .secondary-btn,
.form-footer .nav-btn {
  margin-bottom: 0;
}

/* Optional: alle Footer-Buttons identisch hoch */
.form-footer .primary-btn,
.form-footer .secondary-btn,
.form-footer .nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 22px;
  line-height: 1;
}

/* ===== Login / Auth ===== */

.auth-wrap {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.auth-card {
  width: 100%;
  max-width: 460px;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  background-color: #ffffff;
  padding: 0;              /* wir teilen in header/body */
  overflow: hidden;        /* saubere Rundungen */
}

.auth-card-header {
  padding: 22px 24px 14px;
  border-bottom: 1px solid #e5e7eb;
  background: #fafafa;
  text-align: center;
}

.auth-title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #111827;
}

.auth-subtitle {
  margin: 8px 0 0;
  font-size: 14px;
  color: #6b7280;
}

.auth-form {
  padding: 18px 24px 24px;
}

.auth-btn {
  width: 100%;
  margin-top: 0;     /* überschreibt primary-btn margin-top */
}

/* Error in Card schöner integrieren */
.auth-card .error-msg {
  margin: 14px 24px 0;
}

.feedback-msg {
  max-width: 800px;
  margin: 0 auto 16px;
}

button:disabled,
input:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.kit-count {
  max-width: 600px;
  margin: 0 auto 14px;
  text-align: center;
  font-size: 14px;
  color: #6b7280;
}

.kit-count strong {
  color: #111827;
  font-weight: 600;
}

/* ===== Dark Mode ===== */

body.dark {
  background: #0f172a;
  color: #e5e7eb;
}

/* Cards */
body.dark .op-block,
body.dark .admin-card,
body.dark .auth-card {
  background: #020617;
  border-color: #1e293b;
}

/* Inputs */
body.dark input,
body.dark select {
  background: #020617;
  border-color: #1e293b;
  color: #e5e7eb;
}

body.dark input::placeholder {
  color: #64748b;
}

/* Fieldsets */
body.dark fieldset {
  border-color: #1e293b;
}

/* Titles */
body.dark .form-title,
body.dark .admin-title,
body.dark .auth-title {
  color: #f8fafc;
}

/* Buttons */
body.dark .primary-btn {
  background-color: #3b82f6;
}

body.dark .primary-btn:hover {
  background-color: #2563eb;
}

body.dark .secondary-btn,
body.dark .logout-btn,
body.dark .back-btn {
  background: #020617;
  color: #e5e7eb;
  border-color: #1e293b;
}

body.dark .secondary-btn:hover,
body.dark .logout-btn:hover,
body.dark .back-btn:hover {
  background: #020617;
}

/* Listen */
body.dark .kit-list li {
  border-bottom-color: #1e293b;
}

/* Feedback */
body.dark .success-msg {
  background: #052e16;
  color: #bbf7d0;
}

body.dark .error-msg {
  background: #450a0a;
  color: #fecaca;
}

/* ===== Sterilkits: Suche ===== */

.search-wrap {
  margin: 10px 0 18px;
}

.search-label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: #111827;
  font-size: 14px;
}

.search-input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  font-size: 14px;
  background: #ffffff;
}

.search-input:focus {
  outline: none;
  border-color: #2c6ed5;
  box-shadow: 0 0 0 3px rgba(44, 110, 213, 0.15);
}

.search-hint {
  margin-top: 8px;
  font-size: 13px;
  color: #6b7280;
}

/* Dark Mode */
body.dark .search-label {
  color: #e5e7eb;
}

body.dark .search-input {
  background: #020617;
  border-color: #1e293b;
  color: #e5e7eb;
}

body.dark .search-input::placeholder {
  color: #64748b;
}

body.dark .search-hint {
  color: #94a3b8;
}

/* ===== Footer: Name-Feld über den Buttons ===== */

.footer-name {
  width: 100%;
  margin-bottom: 12px;
}

.footer-name-input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  font-size: 14px;
  background: #ffffff;          /* leicht gräulich */
  color: #111827;
}

.footer-name-input::placeholder {
  color: #9ca3af;
}

.footer-name-input:focus {
  outline: none;
  border-color: #2c6ed5;
  box-shadow: 0 0 0 3px rgba(44, 110, 213, 0.15);
}

/* Footer-Zeile mit Buttons links + Link rechts */
.form-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

/* ===== Footer: Name-Feld über den Buttons ===== */

.form-footer {
  max-width: 800px;
  margin: 16px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.form-left-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* verhindert, dass der rechte Button in die nächste Zeile rutscht */
.form-footer-row .nav-btn {
  white-space: nowrap;
}

/* Mobile: sauber untereinander */
@media (max-width: 700px) {
  .form-footer-row {
    flex-direction: column;
    align-items: stretch;
  }
  .form-left-actions,
  .form-footer-row .nav-btn {
    width: 100%;
  }
}

body.dark .footer-name-input {
  background: #020617;
  border-color: #1e293b;
  color: #e5e7eb;
}

body.dark .footer-name-input::placeholder {
  color: #64748b;
}

/* ===== Footer ===== */

.site-footer {
  margin: 40px auto 20px;
  text-align: center;
  font-size: 13px;
  color: #6b7280;
}

.footer-links {
  margin-bottom: 6px;
}

.footer-links a {
  color: #6b7280;
  text-decoration: none;
  margin: 0 6px;
}

.footer-links a:hover {
  text-decoration: underline;
  color: #374151;
}

.footer-links .sep {
  margin: 0 4px;
  color: #9ca3af;
}

.footer-copy {
  font-size: 12px;
  color: #9ca3af;
}

/* Dark Mode */
body.dark .site-footer,
body.dark .footer-links a {
  color: #94a3b8;
}

body.dark .footer-links a:hover {
  color: #e5e7eb;
}

body.dark .footer-links .sep {
  color: #64748b;
}

/* ===== Sticky Footer Layout (Footer immer unten) ===== */
html, body {
  height: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Footer nach unten drücken */
.page {
  flex: 1;
  width: 100%;
}

/* ===== Sterilkit Optionen (Chips) ===== */

.kit-main {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #f8fafc;
  color: #111827;
  font-size: 13px;
}

.chip-muted {
  opacity: 0.7;
  font-style: italic;
}

.chip-x-form {
  display: inline;
  margin: 0;
}

.chip-x {
  border: none;
  background: none;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  padding: 0;
  color: #ef4444;
}

.chip-x:hover {
  color: #dc2626;
}

.option-add-form {
  display: flex;
  gap: 10px;
  align-items: center;
}

.option-input {
  flex: 1;
  padding: 10px 12px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  font-size: 14px;
}

.option-add-btn {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: none;
  background: #2c6ed5;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

.option-add-btn:hover {
  background: #245bb5;
}

/* Formular: Hinweistext bei Optionen */
.options-hint {
  margin: 6px 0 0;
  font-size: 13px;
  color: #6b7280;
}

/* Dark Mode */
body.dark .chip {
  background: #020617;
  border-color: #1e293b;
  color: #e5e7eb;
}

body.dark .option-input {
  background: #020617;
  border-color: #1e293b;
  color: #e5e7eb;
}

body.dark .options-hint {
  color: #94a3b8;
}

/* ===== Formular: Kopie anfordern ===== */

.copy-request {
  margin-top: 12px;
}

.copy-question {
  margin: 0 0 8px;
  font-weight: 600;
  color: #111827;
  font-size: 14px;
}

.copy-radios {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 10px;
}

.radio {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-weight: 500;
}

/* ===== Kopie: Split E-Mail (Alias + feste Domain) ===== */

.split-email {
  display: flex;
  align-items: stretch;
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
}

.split-email:focus-within {
  outline: none;
  border-color: #2c6ed5;
  box-shadow: 0 0 0 3px rgba(44, 110, 213, 0.15);
}

.split-email-input {
  flex: 1;
  min-width: 0;
  padding: 12px 14px;
  border: none;
  font-size: 14px;
  background: transparent;
}

.split-email-input:focus {
  outline: none;
}

.split-email-domain {
  display: inline-flex;
  align-items: center;
  padding: 12px 14px;
  border-left: 1px solid #d1d5db;
  background: #f8fafc;
  color: #6b7280;
  font-size: 14px;
  white-space: nowrap;
}

/* Dark Mode */
body.dark .split-email {
  background: #020617;
  border-color: #1e293b;
}

body.dark .split-email-domain {
  background: #0b1220;
  border-left-color: #1e293b;
  color: #94a3b8;
}

body.dark .split-email-input {
  color: #e5e7eb;
}

.copy-email input[type="email"] {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  font-size: 14px;
  background: #ffffff;
}

.copy-email input[type="email"]:focus {
  outline: none;
  border-color: #2c6ed5;
  box-shadow: 0 0 0 3px rgba(44, 110, 213, 0.15);
}

.copy-hint {
  margin: 8px 0 0;
  font-size: 13px;
  color: #6b7280;
}

/* Dark Mode */
body.dark .copy-question { color: #e5e7eb; }
body.dark .copy-hint { color: #94a3b8; }
body.dark .copy-email input[type="email"] {
  background: #020617;
  border-color: #1e293b;
  color: #e5e7eb;
}

/* ===== Sterilkit Editor (separate Seite) ===== */
.editor-card {
  max-width: 520px;
  margin: 0 auto;
}

.editor-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.editor-section {
  background: #fff7d6;
  border: 1px solid #f3e6b2;
  border-radius: 14px;
  padding: 14px;
}

.dark .editor-section {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.editor-label {
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

.editor-hint {
  font-size: 13px;
  color: #64748b;
  margin-top: 2px;
}

.dark .editor-hint {
  color: #94a3b8;
}

.editor-list {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.editor-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

.editor-input {
  width: 100%;
  height: 42px;
  border-radius: 10px;
  border: 1px solid #d0d5dd;
  padding: 0 12px;
  outline: none;
  background: #fff;
}

.dark .editor-input {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
  color: #e5e7eb;
}

.icon-btn {
  width: 44px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid #d0d5dd;
  background: #fff;
  cursor: pointer;
}

.dark .icon-btn {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
  color: #e5e7eb;
}

.editor-empty {
  font-size: 13px;
  color: #64748b;
}

.btn-save {
  background: #e3b307;
  color: #111827;
  border: none;
  border-radius: 12px;
  padding: 10px 14px;
  font-weight: 600;
  cursor: pointer;
}

.btn-save:hover {
  filter: brightness(0.95);
}

.editor-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 6px;
}

.editor-danger {
  background: transparent;
  border: none;
  padding: 0;
}

.danger-link {
  color: #b91c1c;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-decoration: underline;
}

/* ===== Admin: Actions row ===== */
.admin-actions {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 16px;
}

/* ===== Admin: kleine Meta-Pills (Größen/Optionen Anzahl) ===== */
.kit-meta {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border: 1px solid #e5e7eb;
  background: #f8fafc;
  border-radius: 999px;
  font-size: 12px;
  color: #6b7280;
}

/* ===== Admin Editor ===== */
.admin-editor .options-hint {
  margin: 0 0 10px;
  color: #6b7280;
  font-size: 13px;
}

.editor-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
}

.editor-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

.editor-row input[type="text"] {
  flex: 1;
}

.admin-editor-actions {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 18px;
}

.admin-editor-danger {
  margin-top: 8px;
}

/* ===== Admin: schöner Icon-Button (Bearbeiten) ===== */
.icon-action {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid #d1d5db;
  border-radius: 10px;
  background-color: #f3f4f6;

  text-decoration: none;
  font-size: 18px;
  color: #2563eb;
  cursor: pointer;
}

.icon-action:hover {
  background-color: #e5e7eb;
  color: #1d4ed8;
}

/* ===== Sterilkit-Editor: Buttons exakt gleich hoch ===== */
.admin-editor-actions {
  align-items: center;
}

/* Höhe angleichen */
.admin-editor-actions .secondary-btn,
.admin-editor-actions .nav-btn {
  padding: 12px 22px !important;   /* exakt wie primary-btn */
  line-height: 1.2 !important;
  height: auto;
  box-sizing: border-box;
}

/* Margins neutralisieren */
.admin-editor-actions .primary-btn,
.admin-editor-actions .secondary-btn,
.admin-editor-actions .nav-btn {
  margin: 0 !important;
}

/* Beide "Buttons" (a + button) in dieser Zeile hart angleichen */
.admin-editor-actions .secondary-btn,
.admin-editor-actions .nav-btn,
.admin-editor-actions .primary-btn {
  height: 40px !important;          /* gleiche Höhe */
  padding: 0 22px !important;        /* nur horizontal, vertikal über height */
  display: inline-flex !important;   /* a wird wie button */
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
  box-sizing: border-box !important;
  margin: 0 !important;
}

/* Back-Bar: Buttons exakt auf gleiche Höhe bringen */
.back-bar-split a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 44px;          /* einheitliche Höhe */
  padding: 0 20px;       /* horizontales Padding */
  line-height: 1;        /* verhindert Text-Versatz */
  box-sizing: border-box;
}


/* Mobile: Buttons untereinander */
@media (max-width: 600px) {
  .back-bar-split {
    flex-direction: column;
    align-items: stretch;
  }

  .back-bar-split a {
    width: 100%;
    text-align: center;
  }
}

/* ===== Back-Bar Split: links/rechts exakt auf einer Linie ===== */
.back-bar-split {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* In dieser Leiste dürfen Buttons keine Standard-Margins haben */
.back-bar-split a {
  margin: 0 !important;
}

/* Icon-Button für destruktive Aktionen */
.icon-action.danger-icon {
  border: 1px solid #f2b8b5;
  background: #fff5f5;
  color: #d93025;
}

.icon-action.danger-icon:hover {
  background: #fdecea;
  border-color: #f28b82;
  color: #b3261e;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group select {
  width: 100%;
}
