/*
 * styles.css – Oberfläche der Ersatzteil-Inventar PWA
 * --------------------------------------------------------------
 * Mobile-first, große Touch-Flächen (Bedienung evtl. mit Handschuhen),
 * kräftige Akzentfarbe, ruhiges Layout. Untere Tab-Leiste fix.
 *
 * Aufbau: Variablen → Grundlagen → Kopf/Tabs → Liste/Karten →
 * Buttons → Scan → Formular/Modale → Mehr → Toast.
 */

/* ------------------- Design-Variablen ------------------- */
:root {
  --akzent: #1f6feb;          /* kräftiges Blau, Hauptaktion */
  --akzent-dunkel: #1a5fd0;
  --gruen: #2ea043;           /* Auffüllen / OK */
  --gruen-dunkel: #268839;
  --rot: #d1242f;             /* Entnehmen / Gefahr */
  --rot-dunkel: #b21f29;
  --warn-bg: #fff4e5;         /* Hintergrund knapper Teile */
  --warn-rand: #f0883e;       /* Rand/Markierung knapper Teile */
  --warn-text: #9a4a00;

  --bg: #f4f6f9;              /* Seitenhintergrund */
  --karte-bg: #ffffff;
  --text: #1c2330;
  --text-leise: #5b6675;
  --rand: #dfe4ea;

  --radius: 14px;
  --radius-klein: 10px;
  --schatten: 0 1px 3px rgba(20, 30, 50, 0.08), 0 1px 2px rgba(20, 30, 50, 0.06);

  --kopf-hoehe: 52px;
  --tab-hoehe: 64px;

  /* iPhone Safe-Areas (Notch / Home-Indikator) */
  --safe-oben: env(safe-area-inset-top, 0px);
  --safe-unten: env(safe-area-inset-bottom, 0px);
}

/* ------------------- Grundlagen ------------------- */
* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 17px;
  line-height: 1.4;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

/* Kein Scroll des Bodys, wenn ein Modal offen ist */
body.modal-aktiv {
  overflow: hidden;
}

button {
  font-family: inherit;
  cursor: pointer;
}

input,
textarea,
button {
  font-size: 16px; /* >=16px verhindert iOS-Auto-Zoom beim Fokus */
}

/* ------------------- Kopfleiste ------------------- */
.kopf {
  position: sticky;
  top: 0;
  z-index: 20;
  height: calc(var(--kopf-hoehe) + var(--safe-oben));
  padding-top: var(--safe-oben);
  background: var(--akzent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--schatten);
}

.kopf__titel {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

/* Sync-Status: dezentes Badge unten rechts in der Kopfzeile.
   "ok" ist absichtlich fast unsichtbar – nur Probleme sollen auffallen. */
.sync-status {
  position: absolute;
  right: 12px;
  bottom: 7px;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  color: #fff;
}
.sync-status--syncing { background: rgba(255, 255, 255, 0.35); }
.sync-status--ok { color: rgba(255, 255, 255, 0.5); }
.sync-status--offline { background: rgba(0, 0, 0, 0.28); }
.sync-status--fehler { background: var(--rot, #dc2626); }

/* ------------------- Inhalt / Ansichten ------------------- */
.inhalt {
  /* Platz lassen für fixe Tab-Leiste unten */
  padding-bottom: calc(var(--tab-hoehe) + var(--safe-unten) + 12px);
  min-height: 100vh;
}

.ansicht {
  display: none;
  padding: 12px;
}
.ansicht--aktiv {
  display: block;
}

/* ------------------- Tab-Leiste (unten) ------------------- */
.tableiste {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  height: calc(var(--tab-hoehe) + var(--safe-unten));
  padding-bottom: var(--safe-unten);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--karte-bg);
  border-top: 1px solid var(--rand);
  box-shadow: 0 -1px 6px rgba(20, 30, 50, 0.05);
}

.tab {
  border: none;
  background: transparent;
  color: var(--text-leise);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 6px 2px;
  transition: color 0.12s ease;
}
.tab__icon {
  font-size: 22px;
  line-height: 1;
}
.tab__text {
  font-size: 11px;
  font-weight: 600;
}
.tab--aktiv {
  color: var(--akzent);
}

/* ------------------- Suchleiste ------------------- */
.suchleiste {
  position: relative;
  margin-bottom: 10px;
}
.suche__feld {
  width: 100%;
  padding: 13px 40px 13px 14px;
  border: 1px solid var(--rand);
  border-radius: var(--radius-klein);
  background: #fff;
  color: var(--text);
}
.suche__feld:focus {
  outline: none;
  border-color: var(--akzent);
  box-shadow: 0 0 0 3px rgba(31, 111, 235, 0.15);
}
.suche__loeschen {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  color: var(--text-leise);
  font-size: 18px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
}

/* ------------------- Listen-Kopf ------------------- */
.listen-kopf {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.zaehler {
  font-size: 14px;
  color: var(--text-leise);
  font-weight: 600;
}
.neu-btn {
  border: none;
  background: var(--akzent);
  color: #fff;
  padding: 9px 14px;
  border-radius: var(--radius-klein);
  font-weight: 700;
  font-size: 15px;
}
.neu-btn:active {
  background: var(--akzent-dunkel);
}

/* ------------------- Liste / Karten ------------------- */
.liste {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.karte {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--karte-bg);
  border: 1px solid var(--rand);
  border-radius: var(--radius);
  padding: 12px;
  box-shadow: var(--schatten);
}

/* Ganze Karte ist tippbar -> öffnet das Detail-/Buchen-Modal. */
.karte--tippbar {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: background-color 0.12s ease, transform 0.04s ease;
}
.karte--tippbar:active {
  background: #f1f5fa;
  transform: scale(0.995);
}
.karte--tippbar:focus-visible {
  outline: 2px solid var(--akzent);
  outline-offset: 2px;
}

/* Linke Spalte: Bezeichnung + Artikelnummer (nimmt den freien Platz ein). */
.karte__haupt {
  flex: 1 1 auto;
  min-width: 0;
}

/* Chevron rechts als "tippen"-Hinweis (klassisches Listen-Pattern). */
.karte__chevron {
  flex: 0 0 auto;
  color: var(--text-leise);
  font-size: 24px;
  line-height: 1;
  font-weight: 400;
}

/* Knapp / nachzubestellen: kräftig markieren */
.karte--knapp {
  background: var(--warn-bg);
  border-color: var(--warn-rand);
  border-left: 5px solid var(--warn-rand);
}

.karte__kopf {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}
.karte__titel {
  font-weight: 700;
  font-size: 17px;
  line-height: 1.25;
  word-break: break-word;
}

.bestand-badge {
  flex: 0 0 auto;
  min-width: 40px;
  text-align: center;
  background: #eef2f7;
  color: var(--text);
  font-weight: 800;
  font-size: 18px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--rand);
}
.bestand-badge--knapp {
  background: var(--rot);
  color: #fff;
  border-color: var(--rot-dunkel);
}

/* Artikelnummer prominent unter dem Titel – die Nummer fürs Nachbestellen.
   Bewusst größer/kräftiger als die dezente Meta-Zeile darunter. */
.karte__artnr {
  margin-top: 6px;
  font-size: 15px;
  line-height: 1.3;
  word-break: break-word;
}
.karte__artnr-label {
  color: var(--text-leise);
  font-weight: 600;
}
.karte__artnr-wert {
  color: var(--text);
  font-weight: 800;
}

.karte__meta {
  margin-top: 6px;
  font-size: 13px;
  color: var(--text-leise);
  line-height: 1.5;
  word-break: break-word;
}

/* "± andere Menge"-Link im Detail-Modal (für größere Stückzahlen). */
.schnell__menge {
  display: block;
  margin: 6px auto 0;
  font-size: 14px;
}
.link-btn {
  border: none;
  background: transparent;
  color: var(--akzent);
  font-weight: 600;
  font-size: 14px;
  padding: 6px 8px;
}

/* Leere Zustände */
.leer {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-leise);
}
.leer__titel {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.leer__text {
  font-size: 14px;
}

/* ------------------- Große Buttons (allgemein) ------------------- */
.grossbtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  border: none;
  border-radius: var(--radius);
  padding: 16px;
  font-size: 17px;
  font-weight: 700;
  min-height: 54px;
}
.grossbtn--primaer {
  background: var(--akzent);
  color: #fff;
}
.grossbtn--primaer:active {
  background: var(--akzent-dunkel);
}
.grossbtn--neutral {
  background: #eef2f7;
  color: var(--text);
  border: 1px solid var(--rand);
}
.grossbtn--neutral:active {
  background: #e0e6ee;
}
.grossbtn--gefahr {
  background: #fff;
  color: var(--rot);
  border: 1px solid var(--rot);
}
.grossbtn--gefahr:active {
  background: #fdecee;
}
.grossbtn[disabled] {
  opacity: 0.5;
}

/* ------------------- Scan-Ansicht ------------------- */
.scan-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.scan-bereich {
  position: relative; /* für den Treffer-Blitz darüber */
  width: 100%;
  aspect-ratio: 1 / 1;
  max-height: 60vh;
  background: #0d1117;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* html5-qrcode rendert ein <video> hinein – soll den Bereich füllen */
.scan-bereich video {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}

/* Treffer-Blitz: liegt über dem Kamerabild und blitzt nach einem erkannten
   Code kurz grün auf. Ruhiges, kurzes Feedback – nicht hektisch. Per Default
   unsichtbar (kein pointer-events, damit es nie Taps abfängt). */
.scan-blitz {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  border-radius: var(--radius);
  background: rgba(46, 160, 67, 0.35);
  box-shadow: inset 0 0 0 4px var(--gruen);
}
.scan-blitz--an {
  animation: scanblitz 0.35s ease-out;
}
@keyframes scanblitz {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* Start-/Fehler-Overlay: deckt das schwarze Kamerafeld ab, solange die Kamera
   nicht läuft. Großer Tap-Bereich (füllt den ganzen Scan-Bereich), damit der
   Start-Tap leicht trifft – DAS ist die iOS-Geste für getUserMedia. Liegt unter
   dem Treffer-Blitz (z-index 2), aber über dem Kamerabild. */
.scan-tap-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--radius);
  padding: 20px;
  background: #0d1117;
  color: #fff;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.scan-tap-overlay:active {
  background: #161b22;
}
.scan-tap-overlay__icon {
  font-size: 52px;
  line-height: 1;
}
.scan-tap-overlay__text {
  font-size: 19px;
  font-weight: 800;
  line-height: 1.3;
}
.scan-tap-overlay__hinweis {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: #c9d4e3;
  max-width: 22em;
}
.scan-tap-overlay__hinweis:empty {
  display: none;
}
/* Fehlerfall: kräftiger roter Rahmen, damit klar ist, dass etwas schiefging
   (statt nur schwarzem Feld). */
.scan-tap-overlay--fehler {
  box-shadow: inset 0 0 0 3px var(--rot);
}
.scan-tap-overlay--fehler .scan-tap-overlay__text {
  color: #ffb3b8;
}
/* Während des Starts (disabled): leicht abgedimmt, kein erneuter Tap. */
.scan-tap-overlay[disabled] {
  opacity: 0.85;
  cursor: default;
}

.scan-status {
  margin: 0;
  text-align: center;
  font-weight: 600;
  color: var(--text-leise);
  min-height: 22px;
}
.scan-knoepfe {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.scan-hinweis {
  margin: 0;
  text-align: center;
  font-size: 13px;
  color: var(--text-leise);
}

/* Taschenlampe: neutral wenn aus, kräftig gelb hervorgehoben wenn an.
   So sieht man auf einen Blick, ob das Licht brennt. */
.scan-torch--an {
  background: #ffd43b;
  border-color: #e6b800;
  color: #3b2f00;
}
.scan-torch--an:active {
  background: #f7c600;
}

/* ------------------- Mehr / Export ------------------- */
.mehr {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto;
}
.mehr__ueberschrift {
  font-size: 16px;
  margin: 8px 0 0;
}
.mehr__text {
  margin: 0;
  font-size: 14px;
  color: var(--text-leise);
}
.mehr__hinweis {
  margin: 0;
  font-size: 13px;
  color: var(--text-leise);
}
.mehr__version {
  font-size: 13px;
  color: var(--text-leise);
}
.import-label {
  cursor: pointer;
}
.trenner {
  border: none;
  border-top: 1px solid var(--rand);
  margin: 8px 0;
  width: 100%;
}

/* ------------------- Modale ------------------- */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(15, 22, 35, 0.55);
  align-items: flex-end;
  justify-content: center;
  padding: 0;
}
.modal--offen {
  display: flex;
}

.modal__box {
  background: var(--karte-bg);
  width: 100%;
  max-width: 560px;
  max-height: 92vh;
  border-radius: 18px 18px 0 0;
  padding: 16px 16px calc(16px + var(--safe-unten));
  overflow-y: auto;
  animation: hochfahren 0.18s ease-out;
}
.modal__box--schmal {
  text-align: center;
}
@keyframes hochfahren {
  from {
    transform: translateY(20px);
    opacity: 0.6;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal__kopf {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.modal__titel {
  margin: 0;
  font-size: 19px;
  font-weight: 700;
}
.modal__schliessen {
  border: none;
  background: #eef2f7;
  color: var(--text);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 18px;
}

/* ------------------- Formular ------------------- */
.formular {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feld {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.feld__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-leise);
}
.feld__input {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--rand);
  border-radius: var(--radius-klein);
  background: #fff;
  color: var(--text);
}
.feld__input:focus {
  outline: none;
  border-color: var(--akzent);
  box-shadow: 0 0 0 3px rgba(31, 111, 235, 0.15);
}
.feld__textarea {
  resize: vertical;
  min-height: 48px;
}
.feld-reihe {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.feld__mit-knopf {
  display: flex;
  gap: 8px;
}
.feld__mit-knopf .feld__input {
  flex: 1;
}
.feld__scan {
  flex: 0 0 auto;
  width: 50px;
  border: 1px solid var(--akzent);
  background: #fff;
  color: var(--akzent);
  border-radius: var(--radius-klein);
  font-size: 20px;
}
.feld__scan:active {
  background: rgba(31, 111, 235, 0.1);
}

.formular__aktionen {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}
.formular__aktionen .grossbtn {
  flex: 1;
}

/* ------------------- Schnellbuchen-Modal ------------------- */
.schnell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 4px 0 10px;
}
.schnell__bestand-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.schnell__bestand-label {
  font-size: 13px;
  color: var(--text-leise);
  font-weight: 600;
}
.schnell__bestand {
  font-size: 64px;
  font-weight: 800;
  line-height: 1;
  color: var(--text);
}
.schnell__info {
  margin: 0;
  font-size: 14px;
  color: var(--text-leise);
  text-align: center;
}

/* Artikelnummer im Schnellbuchen-Modal: gut sichtbar oben, da es die
   Nummer fürs Nachbestellen ist. */
.schnell__artnr {
  margin: 0;
  font-size: 16px;
  text-align: center;
  word-break: break-word;
}
.schnell__artnr-label {
  color: var(--text-leise);
  font-weight: 600;
}
.schnell__artnr-wert {
  color: var(--text);
  font-weight: 800;
}
.schnell__buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
}
.riesenbtn {
  border: none;
  border-radius: var(--radius);
  color: #fff;
  font-size: 40px;
  font-weight: 800;
  padding: 22px 0;
  min-height: 90px;
}
.riesenbtn--minus {
  background: var(--rot);
}
.riesenbtn--minus:active {
  background: var(--rot-dunkel);
}
.riesenbtn--plus {
  background: var(--gruen);
}
.riesenbtn--plus:active {
  background: var(--gruen-dunkel);
}
.schnell__sekundaer {
  display: flex;
  gap: 18px;
  justify-content: center;
}
/* "Fertig · nächstes Teil" etwas kräftiger als der reine Bearbeiten-Link,
   damit klar ist: das ist der normale Weg zum nächsten Scan. */
.link-btn--stark {
  font-weight: 700;
}

/* ------------------- Unbekannt-Dialog ------------------- */
.unbekannt__text {
  margin: 0;
  font-size: 14px;
  color: var(--text-leise);
  text-align: center;
}
.unbekannt__code {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  text-align: center;
  word-break: break-all;
  color: var(--text);
  background: #eef2f7;
  border: 1px solid var(--rand);
  border-radius: var(--radius-klein);
  padding: 8px 12px;
}
/* Im Unbekannt-Dialog stehen die Aktionen nebeneinander (Abbrechen/Anlegen),
   schön touch-groß. .formular__aktionen liefert das Grundlayout schon. */
#modal-unbekannt .formular__aktionen {
  width: 100%;
}

/* ------------------- Barcode-Liste im Formular ------------------- */
/* Ein Teil kann mehrere Barcodes haben: jede Zeile = ein Code + ✕ zum
   Entfernen (Touch-Ziel mind. 44px, Bedienung evtl. mit Handschuhen). */
.barcode-liste {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.barcode-liste__leer {
  font-size: 13px;
  color: var(--text-leise);
  padding: 2px 0;
}
.barcode-zeile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  background: #eef2f7;
  border: 1px solid var(--rand);
  border-radius: var(--radius-klein);
  padding: 2px 2px 2px 12px;
  min-height: 44px;
}
.barcode-zeile__code {
  font-weight: 700;
  word-break: break-all;
  color: var(--text);
}
.barcode-zeile__entfernen {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  color: var(--rot);
  font-size: 18px;
  border-radius: var(--radius-klein);
}
.barcode-zeile__entfernen:active {
  background: #fdecee;
}

/* ------------------- Zuordnen-Modal (Teil-Auswahl) ------------------- */
/* Liste scrollt im Modal, damit Suchfeld + Kopf stehen bleiben. */
.zuordnen-liste {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 45vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 10px;
}
.zuordnen-teil {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  text-align: left;
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--rand);
  border-radius: var(--radius-klein);
  background: #fff;
  padding: 12px;
}
.zuordnen-teil:active {
  background: #eef2f7;
}
.zuordnen-teil__name {
  font-weight: 700;
  color: var(--text);
}
.zuordnen-teil__meta {
  font-size: 13px;
  color: var(--text-leise);
}
#modal-zuordnen .unbekannt__text {
  margin-bottom: 10px;
}

/* ------------------- Toast ------------------- */
.toast {
  position: fixed;
  left: 50%;
  bottom: calc(var(--tab-hoehe) + var(--safe-unten) + 14px);
  transform: translate(-50%, 20px);
  z-index: 60;
  max-width: 90vw;
  background: #1c2330;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  text-align: center;
}
.toast--sichtbar {
  opacity: 1;
  transform: translate(-50%, 0);
}
.toast--erfolg {
  background: var(--gruen-dunkel);
}
.toast--fehler {
  background: var(--rot-dunkel);
}

/* App weitersagen – zwei QR-Karten nebeneinander, stapeln bei schmal.
   Nutzt die App-Variablen (Karten-Hintergrund/Rand/Radius/Schatten),
   damit die Karten zum restlichen App-Look passen. */
.weitersagen {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 8px 0 4px;
}
.weitersagen__teilen {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}
.weitersagen__karte {
  flex: 1 1 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 12px;
  background: var(--karte-bg);
  border: 1px solid var(--rand);
  border-radius: var(--radius);
  box-shadow: var(--schatten);
}
.weitersagen__label {
  font-weight: 600;
  font-size: 16px;
}
.weitersagen__qr {
  width: 180px;
  height: 180px;
  max-width: 100%;
}
.weitersagen__hinweis {
  font-size: 13px;
  color: var(--text-leise);
}
