/* =============================================================
   QNG-Tool | Stylesheet
   Liegt in: /assets/css/style.css

   Aufbau:
     1. Design-Tokens (DIFAK CI)
     2. Reset & Basis-Typografie
     3. Komponenten (Forms, Buttons, Alerts)
     4. App-Layout (Header, Container, Pages)
     5. Login-Seite
     6. Dashboard-Platzhalter
     7. Utilities
============================================================= */

/* -------------------------------------------------------------
   1. DESIGN-TOKENS
   Zentrale Definition aller Farben, Schriften, Abstaende.
   White-Label-Anpassung erfolgt nur hier.
------------------------------------------------------------- */
:root {
  /* --- Primaerfarben: Navy --- */
  --c-navy-deep:  #0D2240;
  --c-navy-mid:   #1A3A5C;
  --c-navy-light: #2C5282;

  /* --- Akzent: Gold --- */
  --c-gold:       #C8A951;
  --c-gold-hell:  #E8CB7A;
  --c-gold-pale:  #F7EDD0;

  /* --- Neutralfarben --- */
  --c-anthrazit:  #1C1C2E;
  --c-grau-mid:   #64748B;
  --c-grau-hell:  #E2E8F0;
  --c-warm-white: #F8F6F1;
  --c-white:      #FFFFFF;

  /* --- Semantisch --- */
  --c-erfolg:     #1B6B45;
  --c-warnung:    #B45309;
  --c-fehler:     #9B1C1C;
  --c-erfolg-bg:  #D1FAE5;
  --c-warnung-bg: #FEF3C7;
  --c-fehler-bg:  #FEE2E2;

  /* --- Typografie --- */
  --font-display:  'DM Serif Display', Georgia, 'Times New Roman', serif;
  --font-headline: 'Outfit', system-ui, -apple-system, sans-serif;
  --font-body:     'Outfit', system-ui, -apple-system, sans-serif;
  --font-mono:     'DM Mono', 'Courier New', Courier, monospace;

  /* --- Abstaende (8px-Raster) --- */
  --s-1:  4px;
  --s-2:  8px;
  --s-3:  12px;
  --s-4:  16px;
  --s-6:  24px;
  --s-8:  32px;
  --s-12: 48px;
  --s-16: 64px;
  --s-24: 96px;

  /* --- Radien --- */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 12px;
  --r-xl: 20px;

  /* --- Schatten (sehr dezent, premium) --- */
  --sh-sm: 0 1px 2px rgba(13, 34, 64, 0.06);
  --sh-md: 0 4px 16px rgba(13, 34, 64, 0.08);
  --sh-lg: 0 16px 40px rgba(13, 34, 64, 0.12);

  /* --- Layout --- */
  --max-w:       1280px;
  --max-w-text:  720px;
  --header-h:    72px;
}

/* -------------------------------------------------------------
   2. RESET & BASIS-TYPOGRAFIE
------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--c-anthrazit);
  background: var(--c-warm-white);
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headline);
  font-weight: 600;
  line-height: 1.25;
  color: var(--c-anthrazit);
}
h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: 400;
}
h2 { font-size: 32px; }
h3 { font-size: 22px; }
h4 { font-size: 16px; }

p { color: var(--c-anthrazit); }

a {
  color: var(--c-navy-light);
  text-decoration: none;
  transition: color 0.15s;
}
a:hover { color: var(--c-navy-deep); text-decoration: underline; }

img { max-width: 100%; height: auto; display: block; }

/* -------------------------------------------------------------
   3. KOMPONENTEN
------------------------------------------------------------- */

/* Forms */
.form-group { margin-bottom: var(--s-4); }

.form-label {
  display: block;
  font-family: var(--font-headline);
  font-size: 13px;
  font-weight: 500;
  color: var(--c-anthrazit);
  margin-bottom: var(--s-2);
  letter-spacing: 0.01em;
}

.form-input {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--c-anthrazit);
  background: var(--c-white);
  border: 1px solid var(--c-grau-hell);
  border-radius: var(--r-md);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form-input::placeholder { color: var(--c-grau-mid); }
.form-input:hover { border-color: #BFC9D9; }
.form-input:focus {
  outline: none;
  border-color: var(--c-navy-light);
  box-shadow: 0 0 0 3px rgba(44, 82, 130, 0.12);
}
.form-input:disabled { background: var(--c-grau-hell); cursor: not-allowed; opacity: 0.7; }

.form-input[type="email"], .form-input[type="text"] { font-family: var(--font-body); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: 12px 22px;
  font-family: var(--font-headline);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--r-md);
  cursor: pointer;
  transition: all 0.15s ease-out;
  text-decoration: none;
  white-space: nowrap;
}
.btn:disabled { opacity: 0.55; cursor: not-allowed; }

.btn-primary {
  background: var(--c-gold);
  color: var(--c-anthrazit);
}
.btn-primary:hover:not(:disabled) {
  background: var(--c-gold-hell);
  transform: translateY(-1px);
  box-shadow: var(--sh-sm);
  text-decoration: none;
  color: var(--c-anthrazit);
}

.btn-secondary {
  background: var(--c-navy-deep);
  color: var(--c-white);
}
.btn-secondary:hover:not(:disabled) {
  background: var(--c-navy-mid);
  text-decoration: none;
  color: var(--c-white);
}

.btn-tertiary {
  background: transparent;
  color: var(--c-navy-deep);
  border-color: var(--c-grau-hell);
}
.btn-tertiary:hover:not(:disabled) {
  background: var(--c-warm-white);
  border-color: var(--c-navy-light);
  color: var(--c-navy-deep);
  text-decoration: none;
}

.btn-block { width: 100%; padding: 14px 22px; }

/* Alerts */
.alert {
  padding: var(--s-3) var(--s-4);
  border-radius: var(--r-md);
  font-size: 14px;
  margin-bottom: var(--s-4);
  border: 1px solid transparent;
}
.alert-fehler  { background: var(--c-fehler-bg);  color: var(--c-fehler);  border-color: rgba(155, 28, 28, 0.2); }
.alert-erfolg  { background: var(--c-erfolg-bg);  color: var(--c-erfolg);  border-color: rgba(27, 107, 69, 0.2); }
.alert-warnung { background: var(--c-warnung-bg); color: var(--c-warnung); border-color: rgba(180, 83, 9, 0.2); }

/* -------------------------------------------------------------
   4. APP-LAYOUT (Dashboard und folgende Seiten)
------------------------------------------------------------- */

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--s-6);
}

.app-header {
  background: var(--c-navy-deep);
  border-bottom: 2px solid var(--c-gold);
  height: var(--header-h);
  position: sticky;
  top: 0;
  z-index: 100;
}
.app-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.app-logo {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  color: var(--c-white);
  text-decoration: none;
}
.app-logo:hover { text-decoration: none; color: var(--c-white); }
.app-logo-icon {
  width: 40px; height: 40px;
  background: var(--c-white);
  color: var(--c-navy-deep);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
}
.app-logo-text {
  font-family: var(--font-headline);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.app-logo-text-accent {
  color: var(--c-gold);
  margin-left: 6px;
}
.app-header-user {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  color: var(--c-white);
  font-size: 14px;
}
.app-header-user-name {
  font-weight: 500;
  letter-spacing: 0.01em;
}
.app-header-user .btn-tertiary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--c-white);
  border-color: rgba(255, 255, 255, 0.18);
  font-size: 12px;
  padding: 8px 16px;
}
.app-header-user .btn-tertiary:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.32);
  color: var(--c-white);
}

.app-main { padding: var(--s-12) 0; min-height: calc(100vh - var(--header-h)); }

.page-header { margin-bottom: var(--s-12); }
.page-header h1 { font-size: clamp(28px, 3.5vw, 40px); margin-bottom: var(--s-2); }
.page-subtitle { font-size: 16px; color: var(--c-grau-mid); }

/* -------------------------------------------------------------
   5. LOGIN-SEITE
------------------------------------------------------------- */
.login-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--s-6);
  background: var(--c-navy-deep);
  background-image:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(44, 82, 130, 0.25), transparent 60%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(200, 169, 81, 0.06), transparent 60%);
  position: relative;
}
.login-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.login-card {
  position: relative;
  background: var(--c-white);
  border-radius: var(--r-xl);
  padding: var(--s-12) var(--s-12);
  width: 100%;
  max-width: 460px;
  box-shadow: var(--sh-lg);
  animation: cardFadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes cardFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.login-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: var(--s-8);
}
.login-logo-icon {
  width: 64px;
  height: 64px;
  margin-bottom: var(--s-4);
}
.login-brand {
  font-family: var(--font-headline);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-grau-mid);
}
.login-brand-accent { color: var(--c-gold); margin: 0 6px; }

.login-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  color: var(--c-anthrazit);
  margin-bottom: var(--s-2);
  text-align: center;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.login-title-accent {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--c-gold);
  margin: var(--s-3) auto var(--s-3);
}
.login-subtitle {
  font-size: 14px;
  color: var(--c-grau-mid);
  text-align: center;
  margin-bottom: var(--s-8);
  letter-spacing: 0.01em;
}

.login-form { margin-top: var(--s-2); }
.login-footer {
  text-align: center;
  font-size: 13px;
  color: var(--c-grau-mid);
  margin-top: var(--s-8);
  padding-top: var(--s-6);
  border-top: 1px solid var(--c-grau-hell);
}

@media (max-width: 480px) {
  .login-card { padding: var(--s-8) var(--s-6); }
  .login-title { font-size: 30px; }
}

/* -------------------------------------------------------------
   6. DASHBOARD-PLATZHALTER
   Wird in der naechsten Lieferung durch das echte Dashboard ersetzt.
------------------------------------------------------------- */
.placeholder-card {
  background: var(--c-white);
  border: 1px solid var(--c-grau-hell);
  border-radius: var(--r-lg);
  padding: var(--s-12);
  box-shadow: var(--sh-sm);
}
.placeholder-card h2 {
  margin-bottom: var(--s-3);
  color: var(--c-navy-deep);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 28px;
}
.placeholder-card > p {
  color: var(--c-anthrazit);
  margin-bottom: var(--s-4);
  max-width: 60ch;
}
.placeholder-info {
  margin-top: var(--s-8);
  padding: var(--s-6);
  background: var(--c-warm-white);
  border-radius: var(--r-md);
  border-left: 3px solid var(--c-gold);
}
.placeholder-info p {
  margin-bottom: var(--s-2);
  font-size: 14px;
}
.placeholder-info p:last-child { margin-bottom: 0; }
.placeholder-info strong {
  font-family: var(--font-headline);
  font-weight: 600;
  color: var(--c-navy-deep);
  margin-right: var(--s-2);
}
.placeholder-info code {
  font-family: var(--font-mono);
  font-size: 13px;
  background: var(--c-white);
  padding: 2px 6px;
  border-radius: var(--r-sm);
  border: 1px solid var(--c-grau-hell);
}

/* -------------------------------------------------------------
   7. NAVIGATION (im App-Header)
------------------------------------------------------------- */
.app-nav {
  display: flex;
  gap: var(--s-6);
  margin-left: var(--s-12);
  flex: 1;
}
.app-nav a {
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--font-headline);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 0;
  position: relative;
  transition: color 0.15s;
}
.app-nav a:hover { color: var(--c-white); text-decoration: none; }
.app-nav a.active { color: var(--c-white); }
.app-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -22px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--c-gold);
}

.app-header-user-name {
  color: var(--c-white);
  text-decoration: none;
  border-bottom: 1px dashed transparent;
  padding-bottom: 1px;
  transition: border-color 0.15s;
}
.app-header-user-name:hover {
  color: var(--c-white);
  border-bottom-color: var(--c-gold);
  text-decoration: none;
}

@media (max-width: 720px) {
  .app-nav { display: none; }
  .app-header-user-name { display: none; }
}

/* -------------------------------------------------------------
   8. PAGE-HEADER mit Action-Button rechts
------------------------------------------------------------- */
.page-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--s-6);
  margin-bottom: var(--s-8);
  flex-wrap: wrap;
}
.page-header-row .page-header { margin-bottom: 0; flex: 1; min-width: 240px; }

/* -------------------------------------------------------------
   9. FILTER-BAR
------------------------------------------------------------- */
.filter-bar {
  display: flex;
  gap: var(--s-3);
  align-items: center;
  flex-wrap: wrap;
  padding: var(--s-3) var(--s-4);
  background: var(--c-white);
  border: 1px solid var(--c-grau-hell);
  border-radius: var(--r-md);
  margin-bottom: var(--s-6);
}
.filter-label {
  font-family: var(--font-headline);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-grau-mid);
}
.filter-pills {
  display: flex;
  gap: var(--s-1);
}
.filter-pill {
  padding: 6px 14px;
  font-family: var(--font-headline);
  font-size: 12px;
  font-weight: 500;
  border: 1px solid var(--c-grau-hell);
  background: var(--c-white);
  color: var(--c-anthrazit);
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.15s;
}
.filter-pill:hover { border-color: var(--c-navy-light); }
.filter-pill.active {
  background: var(--c-navy-deep);
  color: var(--c-white);
  border-color: var(--c-navy-deep);
}
.filter-bar-spacer { flex: 1; }

/* -------------------------------------------------------------
   10. TABELLE (Datensatz-Liste)
------------------------------------------------------------- */
.data-table-wrap {
  background: var(--c-white);
  border: 1px solid var(--c-grau-hell);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
}
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.data-table thead { background: var(--c-warm-white); }
.data-table th {
  text-align: left;
  padding: var(--s-3) var(--s-4);
  font-family: var(--font-headline);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-grau-mid);
  border-bottom: 1px solid var(--c-grau-hell);
}
.data-table td {
  padding: var(--s-3) var(--s-4);
  border-bottom: 1px solid var(--c-grau-hell);
  color: var(--c-anthrazit);
  vertical-align: middle;
}
.data-table tbody tr:last-child td { border-bottom: none; }
.data-table tbody tr:hover { background: var(--c-warm-white); }

.data-table-empty {
  padding: var(--s-12) var(--s-4);
  text-align: center;
  color: var(--c-grau-mid);
}
.data-table-loading {
  padding: var(--s-8);
  text-align: center;
  color: var(--c-grau-mid);
}

.cell-name { font-weight: 500; color: var(--c-anthrazit); }
.cell-email { color: var(--c-grau-mid); font-size: 13px; }
.cell-meta { color: var(--c-grau-mid); font-size: 13px; }
.cell-actions {
  text-align: right;
  white-space: nowrap;
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: var(--r-sm);
  background: transparent;
  border: 1px solid var(--c-grau-hell);
  color: var(--c-grau-mid);
  cursor: pointer;
  transition: all 0.15s;
  margin-left: 4px;
}
.icon-btn:hover {
  border-color: var(--c-navy-light);
  color: var(--c-navy-deep);
  background: var(--c-warm-white);
}
.icon-btn-danger:hover {
  border-color: var(--c-fehler);
  color: var(--c-fehler);
  background: var(--c-fehler-bg);
}
.icon-btn svg { width: 14px; height: 14px; }

/* Inaktive/archivierte Zeilen visuell daempfen */
.data-table tr.row-inactive td { opacity: 0.55; }
.data-table tr.row-inactive:hover td { opacity: 1; }

.status-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
}
.status-aktiv     { background: var(--c-erfolg); }
.status-inaktiv   { background: var(--c-grau-mid); }
.status-archiviert{ background: var(--c-fehler); }

/* -------------------------------------------------------------
   11. MODAL
------------------------------------------------------------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(13, 34, 64, 0.55);
  backdrop-filter: blur(2px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: var(--s-4);
  animation: backdropFade 0.15s ease-out;
}
.modal-backdrop.is-open { display: flex; }

@keyframes backdropFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal {
  background: var(--c-white);
  border-radius: var(--r-lg);
  width: 100%;
  max-width: 540px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: var(--sh-lg);
  animation: modalSlide 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes modalSlide {
  from { opacity: 0; transform: translateY(20px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--s-6) var(--s-8);
  border-bottom: 1px solid var(--c-grau-hell);
}
.modal-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--c-navy-deep);
  letter-spacing: -0.01em;
}
.modal-close {
  background: transparent;
  border: none;
  font-size: 24px;
  line-height: 1;
  color: var(--c-grau-mid);
  cursor: pointer;
  padding: 4px 8px;
  border-radius: var(--r-sm);
  transition: all 0.15s;
}
.modal-close:hover { color: var(--c-anthrazit); background: var(--c-warm-white); }
.modal-body {
  padding: var(--s-8);
  overflow-y: auto;
}
.modal-footer {
  display: flex;
  gap: var(--s-3);
  justify-content: flex-end;
  padding: var(--s-4) var(--s-8);
  border-top: 1px solid var(--c-grau-hell);
  background: var(--c-warm-white);
  border-radius: 0 0 var(--r-lg) var(--r-lg);
}

/* -------------------------------------------------------------
   12. FORM-LAYOUT (zwei Spalten in Modal)
------------------------------------------------------------- */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-3);
}
@media (max-width: 540px) {
  .form-row { grid-template-columns: 1fr; }
}
.form-help {
  font-size: 12px;
  color: var(--c-grau-mid);
  margin-top: 4px;
}
.form-select {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--c-anthrazit);
  background: var(--c-white);
  border: 1px solid var(--c-grau-hell);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form-select:focus {
  outline: none;
  border-color: var(--c-navy-light);
  box-shadow: 0 0 0 3px rgba(44, 82, 130, 0.12);
}

/* -------------------------------------------------------------
   13. PROFIL-SEITE - Kartengrid
------------------------------------------------------------- */
.card {
  background: var(--c-white);
  border: 1px solid var(--c-grau-hell);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  margin-bottom: var(--s-6);
}
.card-header {
  padding: var(--s-6) var(--s-8);
  border-bottom: 1px solid var(--c-grau-hell);
}
.card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--c-navy-deep);
  margin-bottom: var(--s-1);
}
.card-subtitle {
  font-size: 13px;
  color: var(--c-grau-mid);
}
.card-body { padding: var(--s-8); }
.card-footer {
  padding: var(--s-4) var(--s-8);
  background: var(--c-warm-white);
  border-top: 1px solid var(--c-grau-hell);
  border-radius: 0 0 var(--r-lg) var(--r-lg);
  display: flex;
  justify-content: flex-end;
  gap: var(--s-3);
}

/* -------------------------------------------------------------
   14. UTILITIES
------------------------------------------------------------- */
.text-center { text-align: center; }
.mt-2 { margin-top: var(--s-2); }
.mt-4 { margin-top: var(--s-4); }
.mt-8 { margin-top: var(--s-8); }
.mb-2 { margin-bottom: var(--s-2); }
.mb-4 { margin-bottom: var(--s-4); }
.mb-8 { margin-bottom: var(--s-8); }
.hidden { display: none !important; }

.role-badge {
  display: inline-block;
  padding: 3px 10px;
  font-family: var(--font-headline);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  background: var(--c-gold-pale);
  color: var(--c-warnung);
  border: 1px solid var(--c-gold-hell);
}
.role-badge.role-admin    { background: var(--c-navy-deep); color: var(--c-white); border-color: var(--c-navy-deep); }
.role-badge.role-auditor  { background: var(--c-gold-pale); color: var(--c-warnung); border-color: var(--c-gold-hell); }
.role-badge.role-bauleiter{ background: var(--c-grau-hell); color: var(--c-navy-deep); border-color: #C5CCD6; }
