@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600&family=DM+Mono:wght@400;500&display=swap');

:root {
    --brand:       #1A6B3C;
    --brand-mid:   #2A8A50;
    --brand-light: #E8F5EE;
    --brand-pale:  #F3FAF6;
    --accent:      #2563EB;
    --accent-bg:   #EFF6FF;
    --warn:        #DC2626;
    --warn-bg:     #FEF2F2;
    --neutral-900: #0F1117;
    --neutral-700: #374151;
    --neutral-500: #6B7280;
    --neutral-300: #D1D5DB;
    --neutral-100: #F3F4F6;
    --neutral-50:  #F9FAFB;
    --white:       #FFFFFF;
    --shadow-sm:   0 1px 3px rgba(0,0,0,.08);
    --shadow-md:   0 4px 12px rgba(0,0,0,.10);
    --radius:      8px;
    --radius-lg:   12px;
}

body { font-family: 'DM Sans', sans-serif; background: var(--neutral-100); color: var(--neutral-700); display: flex; height: 100vh; overflow: hidden; font-size: 14px; margin: 0; }

/* ── SIDEBAR ── */
.sidebar { width: 220px; flex-shrink: 0; background: var(--neutral-900); display: flex; flex-direction: column; padding: 0; overflow-y: auto; height: 100vh; }
.sidebar::-webkit-scrollbar { width: 6px; }
.sidebar::-webkit-scrollbar-thumb { background-color: #495057; border-radius: 4px; }
.sidebar-logo { padding: 20px 18px 16px; border-bottom: 1px solid rgba(255,255,255,.08); display: flex; align-items: center; gap: 10px; }
.sidebar-logo .logo-icon { width: 32px; height: 32px; background: var(--brand); border-radius: 8px; display: grid; place-items: center; font-size: 15px; color: white;}
.sidebar-logo span { font-size: 13px; font-weight: 600; color: #fff; letter-spacing: .02em; line-height: 1.2; }
.sidebar-logo .sub { font-weight: 300; color: rgba(255,255,255,.45); font-size: 11px; }
.sidebar-section { padding: 18px 10px 6px; }
.sidebar-section-label { font-size: 10px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.3); padding: 0 8px; margin-bottom: 4px; }
.nav-item-sb { display: flex; align-items: center; gap: 9px; padding: 8px 10px; border-radius: 6px; cursor: pointer; color: rgba(255,255,255,.55); font-size: 13px; font-weight: 400; transition: background .15s, color .15s; text-decoration: none; margin-bottom: 2px;}
.nav-item-sb:hover { background: rgba(255,255,255,.07); color: rgba(255,255,255,.85); }
.nav-item-sb.active { background: var(--brand); color: #fff; font-weight: 500; }
.nav-item-sb .nav-icon { font-size: 14px; width: 18px; text-align: center; flex-shrink: 0; }
.nav-sub { padding-left: 14px; }
.nav-sub .nav-item-sb { font-size: 12.5px; padding: 6px 10px; }
.nav-sub .nav-item-sb.active-sub { color: #fff; background: rgba(255,255,255,.08); }
.sidebar-bottom { margin-top: auto; padding: 12px 10px; border-top: 1px solid rgba(255,255,255,.08); }
.user-card { display: flex; align-items: center; gap: 9px; padding: 8px 10px; border-radius: 6px; cursor: pointer; transition: background .15s; }
.user-card:hover { background: rgba(255,255,255,.07); }
.user-avatar { width: 28px; height: 28px; background: var(--brand-mid); border-radius: 50%; display: grid; place-items: center; font-size: 11px; font-weight: 600; color: #fff; flex-shrink: 0; }
.user-info { flex: 1; min-width: 0; }
.user-name { font-size: 12.5px; font-weight: 500; color: rgba(255,255,255,.8); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.user-role { font-size: 11px; color: rgba(255,255,255,.35); }

/* ── MAIN & TOPBAR ── */
.main { flex: 1; display: flex; flex-direction: column; overflow: hidden; background: var(--neutral-50); }
.topbar { background: var(--white); border-bottom: 1px solid var(--neutral-300); padding: 0 28px; height: 56px; display: flex; align-items: center; justify-content: space-between; flex-shrink: 0; box-shadow: var(--shadow-sm); }
.breadcrumb-top { font-size: 13px; color: var(--neutral-500); margin: 0;}
.breadcrumb-top strong { color: var(--neutral-900); font-weight: 600; }
.badge-year { background: var(--brand-light); color: var(--brand); font-size: 12px; font-weight: 600; padding: 6px 12px; border-radius: 20px; border: 1px solid rgba(26,107,60,.2); outline: none;}

/* ── PAGE & CARDS ── */
.page { flex: 1; overflow-y: auto; padding: 28px 32px; background: var(--neutral-50); }
.stat-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; margin-bottom: 24px; }
.stat-card { background: var(--white); border: 1px solid var(--neutral-300); border-radius: var(--radius-lg); padding: 16px 18px; box-shadow: var(--shadow-sm); }
.stat-label { font-size: 11.5px; font-weight: 500; color: var(--neutral-500); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 6px; }
.stat-value { font-size: 22px; font-weight: 600; color: var(--neutral-900); font-family: 'DM Mono', monospace; letter-spacing: -.02em; }
.data-card { background: var(--white); border: 1px solid var(--neutral-300); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); overflow: hidden; margin-bottom: 24px;}

/* ── TABS ── */
.nav-tabs { border-bottom: 1px solid var(--neutral-300); padding: 0 10px; background: var(--white); border-radius: var(--radius-lg) var(--radius-lg) 0 0; display: flex; flex-wrap: nowrap; overflow-x: auto; margin:0; }
.nav-tabs .nav-link { display: flex; align-items: center; gap: 6px; padding: 13px 16px; font-size: 13px; font-weight: 500; color: var(--neutral-500); cursor: pointer; border: none; border-bottom: 2px solid transparent; margin-bottom: -1px; white-space: nowrap; transition: color .15s, border-color .15s; background: none;}
.nav-tabs .nav-link i { font-size: 14px; color: var(--neutral-500) !important; transition: color .15s; }
.nav-tabs .nav-link:hover { color: var(--neutral-700); }
.nav-tabs .nav-link.active { color: var(--brand); border-bottom-color: var(--brand); font-weight: 600; }
.nav-tabs .nav-link.active i { color: var(--brand) !important; }

/* ── DATATABLES ── */
.table { width: 100%; border-collapse: collapse; margin-bottom: 0 !important; }
.table thead th { background: var(--neutral-50); padding: 11px 16px; font-size: 11.5px; font-weight: 600; color: var(--neutral-500); text-transform: uppercase; letter-spacing: .06em; text-align: left; border-bottom: 1px solid var(--neutral-300); border-top: none; white-space: nowrap; }
.table tbody td { padding: 14px 16px; border-bottom: 1px solid var(--neutral-100); vertical-align: middle; font-size: 13px; color: var(--neutral-700);}
.table tbody tr { transition: background .1s; }
.table tbody tr:hover { background: var(--brand-pale); }
.dataTables_wrapper .dataTables_length, .dataTables_wrapper .dataTables_filter { padding: 14px 18px; font-size: 13px; color: var(--neutral-700); }
.dataTables_wrapper .dataTables_info { padding: 12px 18px; font-size: 12.5px; color: var(--neutral-500); }
.dataTables_wrapper .dataTables_paginate { padding: 12px 18px; }

/* ── TYPOGRAPHY & BUTTONS ── */
.mono-num { font-family: 'DM Mono', monospace; font-size: 13.5px; }
.art-badge { display: inline-flex; align-items: center; gap: 5px; padding: 3px 9px; border-radius: 20px; font-size: 11.5px; font-weight: 500; }
.art-badge.oeko { background: var(--brand-light); color: var(--brand); }
.art-badge.konv { background: #FEF3C7; color: #92400E; }
.art-badge.beides { background: var(--accent-bg); color: var(--accent); }
.art-badge::before { content: '●'; font-size: 7px; }

.action-cell { display: flex; align-items: center; gap: 6px; justify-content: flex-end; }
.icon-btn { width: 30px; height: 30px; border-radius: 6px; border: 1px solid var(--neutral-300); background: var(--white); display: grid; place-items: center; cursor: pointer; font-size: 13px; color: var(--neutral-500); transition: all .15s; text-decoration: none;}
.icon-btn:hover { border-color: var(--neutral-500); color: var(--neutral-700); }
.icon-btn.edit:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-bg); }
.icon-btn.delete:hover { border-color: var(--warn); color: var(--warn); background: var(--warn-bg); }
.icon-btn.export:hover { border-color: var(--brand); color: var(--brand); background: var(--brand-light); }

.btn-primary { background: var(--brand); color: #fff; border-color: var(--brand); font-weight: 500; font-size: 13px; padding: 6px 14px;}
.btn-primary:hover { background: #155c33; border-color: #155c33; color: #fff;}
.btn-success { background: var(--brand-mid); border-color: var(--brand-mid); color: #fff; font-weight: 500; font-size: 13px; padding: 6px 14px;}
.btn-danger-soft { background: var(--warn-bg); color: var(--warn); border: 1px solid rgba(220,38,38,.2); font-weight: 500; font-size: 13px; padding: 6px 14px;}
.btn-danger-soft:hover { background: #fee2e2; color: var(--warn);}

/* ── MODALS ── */
.modal-content { border-radius: var(--radius-lg); border: none; box-shadow: var(--shadow-md); }
.modal-header { background-color: var(--white) !important; color: var(--neutral-900) !important; border-bottom: 1px solid var(--neutral-300); border-radius: var(--radius-lg) var(--radius-lg) 0 0; padding: 16px 24px; }
.modal-title { font-weight: 600; font-size: 18px; }
.modal-footer { border-top: 1px solid var(--neutral-300); background-color: var(--neutral-50); border-radius: 0 0 var(--radius-lg) var(--radius-lg); }

/* =========================================================
   TABELLEN-STYLING: Zebrastreifen (Zartes Anthrazit)
   ========================================================= */

/* Färbt jede zweite Zeile (even = gerade) mit einem extrem zarten Grau/Anthrazit */
.table > tbody > tr:nth-of-type(even) > * {
    --bs-table-accent-bg: rgba(33, 37, 41, 0.05);
}

/* Lässt den Hover-Effekt (Maus drüber) etwas deutlicher hervortreten (zartes EZG-Grün) */
.table-hover > tbody > tr:hover > * {
    --bs-table-accent-bg: rgba(26, 107, 60, 0.09) !important;
}

/* Sorgt dafür, dass die Ränder der Tabelle sauber bleiben */
table.dataTable.table-sm > thead > tr > th {
    border-bottom: 2px solid var(--neutral-300);
}

/* =========================================================
   LAYOUT-ANPASSUNG: Abstand links (Sidebar zu Tabelle) verringern
   ========================================================= */
.main, .main-content {
    /* Falls das Layout fest verankert ist, schließen wir die Lücke zur 230px Sidebar */
 //   margin-left: 230px !important; 
}

/* Verringert das innere Polster (Padding) der Seite */
.page, .main-content {
    padding-left: 20px !important; 
}

/* Falls die Tabellen-Karten selbst noch einen unsichtbaren Rand haben */
.data-card {
    margin-left: 0 !important;
}
/* =========================================================
   ERGÄNZENDE FARBVARIABLEN
   (übernommen aus wiederkehrenden Inline-Styles)
   ========================================================= */
:root {
    --accent-green-dark: #146c43;
    --accent-amber:       #d97706;
}

/* =========================================================
   TEXT- & FARB-UTILITIES
   ========================================================= */
.text-brand { color: var(--brand); }
.text-accent-green { color: var(--accent-green-dark); }
.text-accent-amber { color: var(--accent-amber); }
.border-accent-green { border-color: var(--accent-green-dark); }

.art-badge.neutral { background: #f1f3f5; color: #6c757d; }
.badge-brand { background-color: var(--brand-light); color: var(--brand); border: none; }

/* =========================================================
   GRÖSSEN-/ABSTANDS-UTILITIES (ersetzen einmalige Inline-Styles)
   ========================================================= */
.fs-90     { font-size: .9em; }
.fs-90-rem { font-size: .9rem; }
.fs-95     { font-size: .95rem; }
.fs-105    { font-size: 1.05em; }

.w-60    { width: 60px; }
.w-70    { width: 70px; }
.w-75    { width: 75px; }
.w-100px { width: 100px; }
.w-130   { width: 130px; }
.w-180   { width: 180px; }
.w-250   { width: 250px; }
.w-15pct { width: 15%; }
.w-25pct { width: 25%; }
.w-30pct { width: 30%; }
.minw-150{ min-width: 150px; }
.maxw-500{ max-width: 500px; width: 100%; }
.h-38    { height: 38px; }

.icon-inline-17 { width: 17px; margin-right: 8px; display: inline-block; }
.chk-scale-120 { transform: scale(1.2); cursor: pointer; }
.chk-scale-130 { transform: scale(1.3); }

.pos-top-right-15 { top: 15px; right: 15px; }
.sticky-top-20 { top: 20px; }

.callout-brand { background-color: var(--brand-pale); border-radius: var(--radius-lg); padding: 20px; margin-left: 0; margin-right: 0; }
.mt-5px { margin-top: 5px; }

.bg-highlight-row { background-color: #fffdec; }

.divider-vert { color: var(--neutral-300); margin: 0 8px; }

.iframe-embed { width: 100%; height: 100%; border: none; border-radius: 4px; background: #fff; }
.h-70vh    { min-height: 70vh; }
.maxh-70vh { max-height: 70vh; }

.top-scroll-wrapper { overflow-x: auto; overflow-y: hidden; height: 14px; margin-bottom: 4px; }
.top-scroll-inner { height: 1px; }

/* Zeilen-Layout für dynamisch gerenderte Listen (ajax_daten.php) */
.list-row        { border-bottom: 1px solid #e9ecef; padding: 6px 0; min-height: 85px; display: flex; }
.list-row-left   { flex-direction: column; justify-content: center; }
.list-row-right  { align-items: center; justify-content: flex-end; }
.list-row-start  { align-items: center; justify-content: flex-start; }
.list-row-center { align-items: center; justify-content: center; }

/* =========================================================
   SIDEBAR: Klapp-Pfeile & Footer-Hinweis
   ========================================================= */
.nav-item-sb-collapsible { padding-right: 35px; }
.sidebar-collapse-toggle { cursor: pointer; z-index: 10; color: rgba(255,255,255,.4); }
.chevron-sm { font-size: 12px; }
.sidebar-logout-icon { color: rgba(255,255,255,.3); font-size: 12px; }
.sidebar-footer-note { font-size: 10px; color: rgba(255,255,255,.25); text-align: left; margin-top: 16px; letter-spacing: .05em; }

/* =========================================================
   DASHBOARD (index.php): Kennzahlen-Karten & Aufgabenliste
   ========================================================= */
.dash-card { background: #fff; border: 1px solid #dee2e6; border-radius: 6px; padding: 15px; box-shadow: 0 2px 4px rgba(0,0,0,0.02); height: 100%; display: flex; flex-direction: column; }
.dash-card h6 { font-size: 0.95rem; font-weight: bold; color: #000; margin-bottom: 12px; }
.dash-card .big-num { font-size: 1.8rem; font-weight: normal; color: #000; }
.dash-card .val-row { font-size: 0.85rem; color: #000; margin-bottom: 4px; }

.task-item { display: flex; align-items: flex-start; margin-bottom: 0; font-size: 0.85rem; color: #000; transition: all 0.3s ease; }
.task-item label { cursor: pointer; margin-bottom: 0; line-height: 1.4; }
.task-item input[type="checkbox"] { margin-top: 2px; margin-right: 8px; cursor: pointer; transform: scale(1.1); }
.task-divider { border-bottom: 1px solid #dee2e6; margin: 10px 0; }
.task-done { text-decoration: line-through; opacity: 0.4; }

/* =========================================================
   DATATABLES: gemeinsame Steuerelemente (Index / Händler / Konfiguration)
   ========================================================= */
.custom-dt-buttons .btn, .custom-dt-buttons .dt-button, .custom-actions .btn { font-size: 0.8rem !important; padding: 0.25rem 0.6rem !important; height: 30px; display: inline-flex; align-items: center; justify-content: center; margin: 0; }
.dataTables_filter label { font-size: 0.85rem; margin-bottom: 0; display:flex; align-items:center; gap: 0.5rem; font-weight: normal; }
.dataTables_filter input { padding: 0.2rem 0.5rem; font-size: 0.85rem; border-radius: 0.25rem; border: 1px solid #ced4da; height: 30px; margin-left: 0 !important; width: 180px; }
.dt-buttons { display: flex; gap: 0.3rem; margin-bottom: 0 !important; }

.table-ausschreibung { border-collapse: collapse !important; width: 100%; border: none !important; }
.table-ausschreibung thead th { border-bottom: 2px solid #dee2e6 !important; border-top: none !important; padding-bottom: 8px; }
.table-ausschreibung tbody td { border: none; border-bottom: 1px solid #dee2e6; vertical-align: top; padding: 15px 8px; background-color: #fff; }
.table-ausschreibung tbody tr:hover td { background-color: #fcfcfc !important; }

/* =========================================================
   AUSWERTUNG: Zusatzstyles
   ========================================================= */
.dropdown-menu-produkte { max-height: 350px; overflow-y: auto; min-width: 260px; }
.form-check-label { cursor: pointer; }

/* =========================================================
   KONFIGURATION: Zusatzstyles
   ========================================================= */
.katalog-liste { max-height: 400px; overflow-y: auto; }
.form-switch .form-check-input { width: 3em; height: 1.5em; margin-top: 0.25em; cursor: pointer; }
.form-switch .form-check-input:checked { background-color: var(--brand); border-color: var(--brand); }
.form-control:focus, .form-select:focus { border-color: var(--brand); box-shadow: 0 0 0 0.25rem rgba(26, 107, 60, 0.25); }
.list-group-item { font-size: 14px; border-color: var(--neutral-300); }

/* =========================================================
   LEGACY-SEITEN: Login / Installer / Setup-Assistent
   (eigenständige Seiten außerhalb des Sidebar-Layouts)
   ========================================================= */
body.page-auth { background-color: #f4f6f9; display: flex; align-items: center; justify-content: center; height: 100vh; }
.page-auth .login-card { width: 100%; max-width: 400px; padding: 20px; border-radius: 10px; box-shadow: 0 4px 6px rgba(0,0,0,0.1); }

body.page-install { background-color: #f3f4f6; font-family: 'DM Sans', sans-serif; display: flex; align-items: center; justify-content: center; min-height: 100vh; margin: 0; }
.page-install .install-card { background: #fff; border-radius: 12px; box-shadow: 0 10px 25px rgba(0,0,0,0.05); padding: 40px; width: 100%; max-width: 550px; border: 1px solid #e5e7eb; }
.page-install .brand-icon { width: 60px; height: 60px; background-color: var(--brand); color: white; display: grid; place-items: center; font-size: 28px; border-radius: 12px; margin: 0 auto 20px; }
.page-install .btn-brand { background-color: var(--brand); border-color: var(--brand); }

body.page-setup { background-color: #f4f6f9; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }
.page-setup .setup-container { max-width: 700px; margin: 50px auto; }
.page-setup .card { border: none; border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.page-setup .card-header { background: var(--accent-green-dark); color: white; border-radius: 12px 12px 0 0 !important; font-size: 1.2rem; padding: 20px; }
.page-setup .form-control:focus { border-color: var(--accent-green-dark); box-shadow: 0 0 0 0.25rem rgba(20, 108, 67, 0.25); }
.page-setup .btn-success { background-color: var(--accent-green-dark); border: none; padding: 12px; font-weight: bold; font-size: 1.1rem; }
.page-setup .btn-success:hover { background-color: #0f5233; }

/* =========================================================
   LEGACY-SEITEN: Backup / Import / Dokumente / Umlage
   (gemeinsames altes Dunkel-Sidebar-Layout)
   ========================================================= */
body.legacy-shell { min-height: 100vh; display: flex; flex-direction: column; background-color: #f4f6f9; }
.legacy-shell .sidebar { background-color: #212529; }
.legacy-shell .sidebar a { color: #adb5bd; text-decoration: none; padding: 10px 15px; display: block; transition: 0.2s; }
.legacy-shell .sidebar a:hover, .legacy-shell .sidebar a.active { background-color: #343a40; color: #fff; border-radius: 5px; }

body.page-backup, body.page-import { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }
.page-backup .sidebar, .page-import .sidebar { height: calc(100vh - 56px); overflow-y: auto; width: 250px; }
.page-backup .sidebar a, .page-import .sidebar a { font-size: 0.95rem; }
.page-backup .sidebar::-webkit-scrollbar, .page-import .sidebar::-webkit-scrollbar { width: 6px; }
.page-backup .sidebar::-webkit-scrollbar-thumb, .page-import .sidebar::-webkit-scrollbar-thumb { background-color: #495057; border-radius: 4px; }
.page-backup .sidebar::-webkit-scrollbar-track, .page-import .sidebar::-webkit-scrollbar-track { background: transparent; }
.page-backup .main-content, .page-import .main-content { padding: 25px; flex-grow: 1; overflow-x: hidden; }
.page-backup .card, .page-import .card { border: none; border-radius: 8px; box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075); }

.page-dokumente .sidebar, .page-umlage .sidebar { min-height: calc(100vh - 56px); }
.page-dokumente .main-content, .page-umlage .main-content { padding: 20px; flex-grow: 1; }

.page-import .drop-zone { border: 2px dashed #0d6efd; border-radius: 10px; padding: 30px; text-align: center; background: #fff; cursor: pointer; transition: 0.2s; }
.page-import .drop-zone:hover { background: #f0f7ff; border-color: #0056b3; }
.page-import .nav-tabs .nav-link { color: #495057; font-weight: 500; border: none; padding: 12px 20px; }
.page-import .nav-tabs .nav-link.active { color: #0d6efd; border-bottom: 3px solid #0d6efd; background: none; font-weight: bold; }
.page-import .btn-manual { font-weight: 600; padding: 10px 18px; border-radius: 6px; box-shadow: 0 2px 4px rgba(0,0,0,0.05); }

.page-dokumente .filter-box { background: #e9ecef; border-radius: 8px; padding: 15px; margin-bottom: 20px; }

.page-umlage .nav-tabs .nav-link { color: #6c757d; font-weight: 500; }
.page-umlage .nav-tabs .nav-link.active { color: #0d6efd; font-weight: bold; border-bottom: 3px solid #0d6efd; }

/* ============================================================
   Status-Ampel-System (Richtung B: "Zurueckhaltendes Ampelsystem")
   Gedeckte, aufeinander abgestimmte Statusfarben - ausschliesslich
   fuer kleine Badge-Flaechen (Status/Zustand), niemals als lange
   Lauftext-Farbe fuer Zahlen/Werte. Ueberschreibt dazu gezielt die
   Bootstrap-Standardfarben von .badge, damit Zuschlag/Offen/
   Storniert & Co. im ganzen System einheitlich wirken statt
   "quietschbunt".
   ============================================================ */
:root {
    --status-open-bg:    #FBF3E7;
    --status-open-fg:    #9A6B1F;
    --status-success-bg: var(--brand-light);
    --status-success-fg: var(--brand);
    --status-danger-bg:  #F6E9E7;
    --status-danger-fg:  #9A4A3C;
}

.badge.bg-warning,
.badge.bg-warning.text-dark {
    background-color: var(--status-open-bg) !important;
    color: var(--status-open-fg) !important;
    font-weight: 500;
}

.badge.bg-success,
.badge.bg-success.bg-opacity-10 {
    background-color: var(--status-success-bg) !important;
    color: var(--status-success-fg) !important;
    font-weight: 500;
    border-color: transparent !important;
}

.badge.bg-danger,
.badge.bg-danger.bg-opacity-10 {
    background-color: var(--status-danger-bg) !important;
    color: var(--status-danger-fg) !important;
    font-weight: 500;
    border-color: transparent !important;
}

.badge.bg-light.text-info.border-info {
    background-color: var(--neutral-100) !important;
    color: var(--neutral-700) !important;
    border-color: var(--neutral-300) !important;
}

/* Neutrale Datenwerte: Zahlen/Mengen/Preise bekommen keine eigene
   "Bedeutungsfarbe" mehr, sondern bleiben dunkel/neutral - Farbe ist
   ausschliesslich dem Status-Badge vorbehalten. */
.value-neutral {
    color: var(--neutral-900) !important;
}

.value-muted {
    color: var(--neutral-500) !important;
}

.value-warn {
    color: var(--status-open-fg) !important;
}

.value-danger {
    color: var(--status-danger-fg) !important;
}
