/* =====================================================
   REZEPTRITTER – Mesh Gradient + Glassmorphism + Glossy
   Version 2.0  |  21.05.2026
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,600;9..144,700&family=Inter:wght@400;500;600;700&display=swap');

/* ── CSS-Variablen ─────────────────────────────────── */
:root {
  --primary:        #C1440E;
  --primary-dark:   #9E3109;
  --primary-light:  #E8643A;

  --secondary:       #5A7A3A;
  --secondary-dark:  #3E5828;
  --secondary-light: #7DA05A;

  --accent:      #D4892A;
  --accent-dark: #B8711F;

  --danger:  #D94040;
  --success: #5A7A3A;
  --warning: #D4892A;
  --info:    #2563EB;

  --bg:        #1a0a00;
  --bg-2:      #2d1005;
  --surface:   rgba(255,255,255,0.07);
  --surface-2: rgba(255,255,255,0.04);

  --border: rgba(255,255,255,0.12);

  --text:   #FFFFFF;
  --text-2: rgba(255,255,255,0.65);
  --text-3: rgba(255,255,255,0.35);

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.25);
  --shadow:    0 4px 16px rgba(0,0,0,0.35);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.45);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.55);

  --radius-xs:   5px;
  --radius-sm:   10px;
  --radius:      16px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --radius-full: 9999px;

  --sidebar-w: 240px;
  --header-h:  60px;
  --transition: 0.22s cubic-bezier(0.4,0,0.2,1);

  --font:         'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Fraunces', Georgia, serif;

  --chart-cpu: #E8643A;
  --chart-ram: #3D7DD8;
  --chart-grid: rgba(255,255,255,0.10);
}

/* ── Body / Mesh Gradient ──────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  background-color: #1a0a00;
  background-image:
    radial-gradient(ellipse 80% 60% at 10% 0%,   rgba(193,68,14,0.55) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 90% 10%,  rgba(120,40,10,0.45) 0%, transparent 55%),
    radial-gradient(ellipse 70% 60% at 50% 100%, rgba(80,20,5,0.60)   0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 60%,  rgba(212,137,42,0.20) 0%, transparent 50%),
    radial-gradient(ellipse 40% 30% at 20% 80%,  rgba(150,50,10,0.30) 0%, transparent 50%),
    linear-gradient(145deg, #1a0a00 0%, #2d1005 40%, #1a0800 70%, #0f0500 100%);
  min-height: 100vh;
  color: var(--text);
  margin: 0;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 30% 20% at 15% 15%, rgba(255,255,255,0.04) 0%, transparent 100%),
    radial-gradient(ellipse 20% 15% at 85% 85%, rgba(255,200,100,0.03) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

/* ── App-Layout ────────────────────────────────────── */
.rr-app {
  display: flex;
  min-height: 100vh;
  position: relative;
  z-index: 1;
}

.rr-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.rr-content {
  flex: 1;
  padding: 28px 32px;
  overflow-y: auto;
}

/* ── Header ────────────────────────────────────────── */
.rr-header {
  height: var(--header-h);
  display: flex;
  align-items: center;
  padding: 0 24px;
  gap: 16px;
  background: rgba(15,5,0,0.70);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06) inset, 0 4px 24px rgba(0,0,0,0.40);
  position: sticky;
  top: 0;
  z-index: 100;
}

.rr-brand {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #FFF8F4;
  text-decoration: none;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.rr-brand:hover { color: #fff; }

.rr-header-spacer { flex: 1; }

.rr-header-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  backdrop-filter: blur(12px);
  padding: 0 14px;
  height: 38px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.08) inset;
  max-width: 280px;
  width: 100%;
}
.rr-header-search input {
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-family: var(--font);
  font-size: 14px;
  width: 100%;
}
.rr-header-search input::placeholder { color: rgba(255,255,255,0.38); }

.rr-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.07);
  color: var(--text-2);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  font-size: 18px;
}
.rr-icon-btn:hover {
  color: #fff;
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.22);
  box-shadow: 0 0 12px rgba(193,68,14,0.30);
}

.rr-user-name {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}

/* ── Sidebar ───────────────────────────────────────── */
.rr-sidebar {
  width: var(--sidebar-w);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: rgba(20,8,2,0.78);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-right: 1px solid rgba(255,255,255,0.08);
  box-shadow: 1px 0 0 rgba(255,255,255,0.04) inset, 4px 0 32px rgba(0,0,0,0.30);
  flex-shrink: 0;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}

.rr-sidebar-brand {
  padding: 20px 18px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.rr-sidebar-brand a {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: #FFF8F4;
  text-decoration: none;
}

.rr-sidebar-user {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.rr-sidebar-user-name {
  font-weight: 600;
  font-size: 13px;
  color: rgba(255,255,255,0.90);
}
.rr-sidebar-user-role {
  font-size: 11px;
  color: rgba(255,255,255,0.40);
}

.rr-nav { flex: 1; padding: 8px 0; }

.rr-nav-label {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.28);
  text-transform: uppercase;
  padding: 14px 18px 4px;
  font-family: var(--font);
}

.rr-nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  margin: 1px 8px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: all var(--transition);
  border: 1px solid transparent;
  font-family: var(--font);
}
.rr-nav-link:hover {
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.90);
  border-color: rgba(255,255,255,0.10);
}
.rr-nav-link.active {
  background: linear-gradient(135deg, #E8643A 0%, #C1440E 60%, #9E3109 100%);
  color: #FFFFFF;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.20);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.10) inset,
    0 1px 0  rgba(255,255,255,0.25) inset,
    0 4px 16px rgba(193,68,14,0.50);
}
.rr-nav-link .material-icons,
.rr-nav-link .material-symbols-rounded {
  font-size: 18px;
  flex-shrink: 0;
}

.rr-sidebar-footer {
  padding: 14px 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.rr-sidebar-footer a,
.rr-sidebar-footer button {
  color: rgba(255,255,255,0.45);
  font-size: 13px;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: color var(--transition);
}
.rr-sidebar-footer a:hover,
.rr-sidebar-footer button:hover { color: rgba(255,255,255,0.80); }

/* ── Seiten-Titel ──────────────────────────────────── */
.rr-page-title,
.page-title, h1 {
  font-family: var(--font-display);
  font-weight: 700;
  color: #FFFFFF;
  text-shadow: 0 2px 20px rgba(0,0,0,0.30);
}
h1 { font-size: 30px; }
h2 { font-family: var(--font-display); color: rgba(255,255,255,0.92); }

.rr-page-subtitle,
.page-subtitle { color: var(--text-2); }

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  color: rgba(255,255,255,0.92);
}

/* ── Cards (allgemein) ─────────────────────────────── */
.card,
.rr-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.12) !important;
  border-radius: var(--radius) !important;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.10) inset,
    0 8px 32px rgba(0,0,0,0.30);
  position: relative;
  overflow: hidden;
  color: rgba(255,255,255,0.85);
}
.card::before,
.rr-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(180deg, rgba(255,255,255,0.07) 0%, transparent 100%);
  pointer-events: none;
}

.card-body { color: rgba(255,255,255,0.85); }

.card-header,
.rr-card-header {
  padding: 14px 20px;
  background: rgba(255,255,255,0.06) !important;
  border-bottom: 1px solid rgba(255,255,255,0.10) !important;
  font-weight: 700;
  font-size: 14px;
  color: rgba(255,255,255,0.90) !important;
  font-family: var(--font);
}

/* ── Stat-Cards ────────────────────────────────────── */
.rr-stat-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 18px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.12) inset,
    0 8px 32px rgba(0,0,0,0.30);
  padding: 22px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.rr-stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.00) 100%);
  pointer-events: none;
  border-radius: 18px 18px 0 0;
}
.rr-stat-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.16) inset,
    0 12px 40px rgba(0,0,0,0.40),
    0 0 30px rgba(193,68,14,0.15);
}

.rr-stat-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background: linear-gradient(145deg, #FF7A45 0%, #C1440E 60%, #8B2E08 100%);
  color: #FFFFFF;
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.35) inset,
    0 4px 16px rgba(193,68,14,0.50);
  margin-bottom: 14px;
}

.rr-stat-value {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1;
  margin-bottom: 4px;
}
.rr-stat-label {
  font-size: 12px;
  color: var(--text-2);
  font-weight: 500;
}

/* ── Recipe Cards ──────────────────────────────────── */
.rr-recipe-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.12) inset,
    0 8px 32px rgba(0,0,0,0.35);
  overflow: hidden;
  transition: transform 0.28s cubic-bezier(0.4,0,0.2,1), box-shadow 0.28s ease;
  position: relative;
  cursor: pointer;
}
.rr-recipe-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.18) inset,
    0 20px 60px rgba(0,0,0,0.50),
    0 0 40px rgba(193,68,14,0.20);
  border-color: rgba(255,255,255,0.22);
}
.rr-recipe-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.08) 0%,
    rgba(255,255,255,0.00) 40%,
    rgba(0,0,0,0.55) 100%);
  z-index: 1;
  pointer-events: none;
}
.rr-recipe-card img {
  height: 200px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.rr-recipe-card:hover img { transform: scale(1.07); }

.rr-recipe-body {
  padding: 14px 16px;
  background: rgba(10,4,0,0.35);
  backdrop-filter: blur(4px);
}
.rr-recipe-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.95);
  line-height: 1.35;
  margin-bottom: 6px;
}
.rr-recipe-meta {
  font-size: 12px;
  color: var(--text-2);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.rr-recipe-footer {
  padding: 10px 16px;
  border-top: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.20);
}

/* Bootstrap card-recipe Override */
.card-recipe {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.14) !important;
  border-radius: var(--radius-lg) !important;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.12) inset,
    0 8px 32px rgba(0,0,0,0.35) !important;
  overflow: hidden;
  transition: transform 0.28s cubic-bezier(0.4,0,0.2,1), box-shadow 0.28s ease;
  cursor: pointer;
  color: rgba(255,255,255,0.90);
}
.card-recipe:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow:
    0 20px 60px rgba(0,0,0,0.50),
    0 0 40px rgba(193,68,14,0.20) !important;
  border-color: rgba(255,255,255,0.22) !important;
}
.card-recipe .card-body { color: rgba(255,255,255,0.85); }
.card-recipe .card-title { font-family: var(--font-display); color: #fff; }
.card-recipe .text-muted { color: var(--text-2) !important; }

/* ── Badges ────────────────────────────────────────── */
.badge {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 11px;
  border-radius: var(--radius-full);
  letter-spacing: 0.02em;
  border: 1px solid rgba(255,255,255,0.15);
  font-family: var(--font);
}
.badge.bg-success,  .badge-success  { background: rgba(90,160,60,0.25)  !important; color: #90D060; border-color: rgba(90,160,60,0.35); }
.badge.bg-primary,  .badge-primary  { background: rgba(232,100,58,0.22) !important; color: #FF9970; border-color: rgba(232,100,58,0.35); }
.badge.bg-secondary,.badge-neutral  { background: rgba(255,255,255,0.10)!important; color: rgba(255,255,255,0.70); border-color: rgba(255,255,255,0.15); }
.badge.bg-warning,  .badge-warning  { background: rgba(212,137,42,0.22) !important; color: #FFB84D; border-color: rgba(212,137,42,0.35); }
.badge.bg-info,     .badge-info     { background: rgba(37,99,235,0.22)  !important; color: #7AADFF; border-color: rgba(37,99,235,0.35); }
.badge.bg-danger,   .badge-danger   { background: rgba(217,64,64,0.25)  !important; color: #FF8080; border-color: rgba(217,64,64,0.35); }
.badge.text-dark { color: inherit !important; }

/* ── Buttons ───────────────────────────────────────── */
.btn-primary,
button.btn-primary {
  background: linear-gradient(160deg, #FF7A45 0%, #C1440E 50%, #8B2E08 100%) !important;
  color: #FFFFFF !important;
  border-radius: 12px !important;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font);
  border: 1px solid rgba(255,255,255,0.22) !important;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.30) inset,
    0 4px 20px rgba(193,68,14,0.50) !important;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.00) 100%);
  border-radius: 12px 12px 0 0;
  pointer-events: none;
}
.btn-primary:hover {
  background: linear-gradient(160deg, #FF9060 0%, #D4521A 50%, #9E3109 100%) !important;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.35) inset,
    0 6px 28px rgba(193,68,14,0.65) !important;
  transform: translateY(-2px);
  color: #fff !important;
}

.btn-success {
  background: linear-gradient(160deg, #7CB858 0%, #5A7A3A 50%, #3E5828 100%) !important;
  color: #FFFFFF !important;
  border-radius: 12px !important;
  border: 1px solid rgba(255,255,255,0.18) !important;
  box-shadow: 0 1px 0 rgba(255,255,255,0.25) inset, 0 4px 16px rgba(90,122,58,0.50) !important;
  font-weight: 600;
  transition: all var(--transition);
}
.btn-success:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(90,122,58,0.65) !important;
  color: #fff !important;
}

.btn-secondary,
.btn-outline-secondary {
  background: rgba(255,255,255,0.08) !important;
  color: rgba(255,255,255,0.75) !important;
  border: 1px solid rgba(255,255,255,0.18) !important;
  border-radius: 12px !important;
  backdrop-filter: blur(8px);
  font-weight: 500;
  transition: all var(--transition);
}
.btn-secondary:hover,
.btn-outline-secondary:hover {
  background: rgba(255,255,255,0.14) !important;
  color: #fff !important;
}

.btn-outline-primary {
  background: rgba(193,68,14,0.12) !important;
  color: #FF9970 !important;
  border: 1px solid rgba(193,68,14,0.45) !important;
  border-radius: 12px !important;
  font-weight: 600;
  backdrop-filter: blur(8px);
  transition: all var(--transition);
}
.btn-outline-primary:hover {
  background: rgba(193,68,14,0.25) !important;
  border-color: rgba(232,100,58,0.60) !important;
  color: #FF9970 !important;
}

.btn-outline-light {
  background: rgba(255,255,255,0.07) !important;
  color: rgba(255,255,255,0.80) !important;
  border: 1px solid rgba(255,255,255,0.25) !important;
  border-radius: 10px !important;
  transition: all var(--transition);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.14) !important;
  color: #fff !important;
}

.btn-danger {
  background: linear-gradient(160deg, #F06060 0%, #D94040 50%, #A82C2C 100%) !important;
  color: #fff !important;
  border-radius: 12px !important;
  border: 1px solid rgba(255,255,255,0.18) !important;
  font-weight: 600;
  transition: all var(--transition);
}
.btn-danger:hover {
  transform: translateY(-2px);
  color: #fff !important;
}

/* ── Forms / Inputs ────────────────────────────────── */
.form-control,
.form-select {
  background: rgba(255,255,255,0.07) !important;
  border: 1px solid rgba(255,255,255,0.18) !important;
  border-radius: 10px !important;
  color: #fff !important;
  font-family: var(--font);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus,
.form-select:focus {
  background: rgba(255,255,255,0.10) !important;
  border-color: rgba(193,68,14,0.70) !important;
  box-shadow: 0 0 0 3px rgba(193,68,14,0.20) !important;
  color: #fff !important;
  outline: none;
}
.form-control::placeholder { color: rgba(255,255,255,0.35) !important; }
.form-label { color: rgba(255,255,255,0.75); font-size: 13px; font-weight: 500; margin-bottom: 6px; }
.form-select option { background: #2d1005; color: #fff; }

/* ── Tables ────────────────────────────────────────── */
/* Bootstrap 5.3 paints each <td>/<th> individually via the
   `.table > :not(caption) > * > *` selector, which reads the
   --bs-table-* custom properties (default: opaque white, from
   --bs-body-bg) and has higher specificity than a plain `.table`
   rule. Overriding the variables here — rather than fighting that
   selector's specificity — lets the values inherit down to every
   cell for free. Without this, table text was near-white-on-white. */
.table {
  --bs-table-bg: transparent;
  --bs-table-accent-bg: transparent;
  --bs-table-striped-bg: rgba(255,255,255,0.035);
  --bs-table-striped-color: rgba(255,255,255,0.80);
  --bs-table-active-bg: rgba(255,255,255,0.06);
  --bs-table-active-color: rgba(255,255,255,0.90);
  --bs-table-hover-bg: rgba(255,255,255,0.045);
  --bs-table-hover-color: rgba(255,255,255,0.90);
  --bs-table-color: rgba(255,255,255,0.80);
  --bs-table-border-color: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.80) !important;
  border-color: rgba(255,255,255,0.10) !important;
}
.table thead th {
  color: rgba(255,255,255,0.55) !important;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-color: rgba(255,255,255,0.10) !important;
  padding: 10px 14px;
}
.table tbody tr { border-color: rgba(255,255,255,0.06) !important; }
.table tbody tr:hover { background: rgba(255,255,255,0.04) !important; }
.table-hover > tbody > tr:hover > * { background: rgba(255,255,255,0.05) !important; color: rgba(255,255,255,0.90); }
.table-bordered { border-color: rgba(255,255,255,0.10) !important; }
.table-bordered td, .table-bordered th { border-color: rgba(255,255,255,0.10) !important; }
.table-light { background: rgba(255,255,255,0.06) !important; }
.table-light th { color: rgba(255,255,255,0.70) !important; background: rgba(255,255,255,0.06) !important; }

/* ── Modals ────────────────────────────────────────── */
.modal-content {
  background: rgba(30,12,4,0.92) !important;
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.14) !important;
  border-radius: var(--radius-lg) !important;
  color: rgba(255,255,255,0.85);
  box-shadow: 0 24px 80px rgba(0,0,0,0.60);
}
.modal-header {
  border-bottom: 1px solid rgba(255,255,255,0.10) !important;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0 !important;
}
.modal-title { color: #fff; font-family: var(--font-display); font-weight: 600; }
.modal-footer {
  border-top: 1px solid rgba(255,255,255,0.10) !important;
  background: rgba(0,0,0,0.20);
}
.btn-close { filter: invert(1) opacity(0.6); }
.btn-close:hover { filter: invert(1) opacity(1); }

/* Backdrop */
.modal-backdrop { background-color: rgba(0,0,0,0.60); }

/* ── Navbar (Bootstrap-Compat) ─────────────────────── */
.navbar.bg-primary,
.navbar.navbar-dark.bg-primary {
  background: rgba(15,5,0,0.80) !important;
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.08) !important;
  box-shadow: 0 4px 24px rgba(0,0,0,0.40);
}
.navbar-brand {
  font-family: var(--font-display);
  font-weight: 700;
  color: #FFF8F4 !important;
  font-size: 18px;
}
.nav-link { color: rgba(255,255,255,0.65) !important; transition: color var(--transition); }
.nav-link:hover, .nav-link.active { color: #fff !important; }

/* ── Login-Seite ───────────────────────────────────── */
.rr-login-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.rr-login-card {
  width: 100%;
  max-width: 420px;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-xl);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.12) inset,
    0 24px 80px rgba(0,0,0,0.50),
    0 0 60px rgba(193,68,14,0.12);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
}
.rr-login-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 45%;
  background: linear-gradient(180deg, rgba(255,255,255,0.09) 0%, transparent 100%);
  pointer-events: none;
}

.rr-login-logo {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.rr-login-sub {
  text-align: center;
  color: var(--text-2);
  font-size: 13px;
  margin-bottom: 28px;
}

.rr-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-3);
  font-size: 12px;
  margin: 18px 0;
}
.rr-divider::before,
.rr-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.12);
}

.rr-error {
  background: rgba(217,64,64,0.18);
  border: 1px solid rgba(217,64,64,0.35);
  color: #FF9090;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13px;
  margin-bottom: 16px;
}
.rr-success {
  background: rgba(90,160,60,0.18);
  border: 1px solid rgba(90,160,60,0.35);
  color: #90D060;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13px;
  margin-bottom: 16px;
}

/* ── Hero-Banner ───────────────────────────────────── */
.rr-hero {
  background: linear-gradient(135deg,
    rgba(61,26,10,0.95) 0%,
    rgba(107,46,18,0.90) 50%,
    rgba(193,68,14,0.85) 100%);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(12px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.12) inset,
    0 20px 60px rgba(0,0,0,0.50);
  padding: 32px 36px;
  position: relative;
  overflow: hidden;
  margin-bottom: 28px;
}
.rr-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 55%;
  background: linear-gradient(180deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.00) 100%);
  pointer-events: none;
}
.rr-hero-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.rr-hero-sub { color: rgba(255,255,255,0.65); font-size: 14px; }

/* ── Rezeptdetail ──────────────────────────────────── */
.ingredient-amount {
  color: #FF9970;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  min-width: 80px;
}
.ingredient-row {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.80);
}
.ingredient-row:last-child { border-bottom: none; }

.step-item {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.step-item:last-child { border-bottom: none; }

.step-number {
  background: linear-gradient(145deg, #FF7A45 0%, #C1440E 60%, #8B2E08 100%);
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 1px 0 rgba(255,255,255,0.30) inset, 0 4px 14px rgba(193,68,14,0.55);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-text {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,0.80);
  font-family: var(--font);
}

/* ── Diverses ──────────────────────────────────────── */
.text-muted     { color: var(--text-2) !important; }
.text-primary   { color: #FF9970 !important; }
.text-success   { color: #90D060 !important; }
.text-danger    { color: #FF8080 !important; }
.text-warning   { color: #FFB84D !important; }
.bg-primary     { background: var(--primary) !important; }
.bg-success     { background: var(--success) !important; }
.bg-danger      { background: var(--danger)  !important; }
.bg-light       { background: rgba(255,255,255,0.06) !important; }

.list-group-item {
  background: rgba(255,255,255,0.06) !important;
  border-color: rgba(255,255,255,0.10) !important;
  color: rgba(255,255,255,0.80) !important;
}
.list-group-item:hover {
  background: rgba(255,255,255,0.10) !important;
  color: #fff !important;
  cursor: pointer;
}

.alert-danger {
  background: rgba(217,64,64,0.18) !important;
  border-color: rgba(217,64,64,0.35) !important;
  color: #FF9090 !important;
  border-radius: 10px !important;
}
.alert-success {
  background: rgba(90,160,60,0.18) !important;
  border-color: rgba(90,160,60,0.35) !important;
  color: #90D060 !important;
  border-radius: 10px !important;
}

/* Dropdown */
.dropdown-menu {
  background: rgba(25,10,3,0.95) !important;
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.14) !important;
  border-radius: var(--radius) !important;
}
.dropdown-item { color: rgba(255,255,255,0.75) !important; }
.dropdown-item:hover { background: rgba(255,255,255,0.08) !important; color: #fff !important; }
.dropdown-menu-dark { background: rgba(25,10,3,0.95) !important; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.18); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.30); }

/* Meal-Slot Override */
.meal-slot {
  background: rgba(255,255,255,0.05) !important;
  border: 1px dashed rgba(255,255,255,0.25) !important;
  color: rgba(255,255,255,0.55) !important;
  border-radius: 8px;
  min-height: 70px;
  transition: all var(--transition);
}
.meal-slot:hover {
  background: rgba(193,68,14,0.15) !important;
  border-color: rgba(193,68,14,0.50) !important;
  color: rgba(255,255,255,0.80) !important;
}
.meal-slot.filled {
  background: rgba(90,122,58,0.20) !important;
  border: 1px solid rgba(90,160,60,0.40) !important;
  color: #90D060 !important;
}

/* =====================================================
   HELL-THEME — warmes Orange / Pfirsich (wie App)
   Greift bei: System-Hellmodus (prefers-color-scheme)
   ===================================================== */
@media (prefers-color-scheme: light) {

  /* ── CSS-Variablen ─────────────────────────────────── */
  :root {
    --bg:        #FFF0E0;
    --bg-2:      #FFE4C8;
    --surface:   rgba(255,255,255,0.80);
    --surface-2: rgba(255,255,255,0.60);
    --border:    rgba(193,68,14,0.18);
    --text:      #2C1608;
    --text-2:    rgba(80,38,12,0.60);
    --text-3:    rgba(80,38,12,0.32);
    --shadow-sm: 0 1px 3px rgba(120,50,10,0.12);
    --shadow:    0 4px 16px rgba(120,50,10,0.16);
    --shadow-lg: 0 8px 32px rgba(120,50,10,0.22);
    --shadow-xl: 0 16px 48px rgba(120,50,10,0.28);

    --chart-cpu: #C1440E;
    --chart-ram: #2563EB;
    --chart-grid: rgba(193,68,14,0.12);
  }

  /* ── Body / Mesh Gradient (warm Pfirsich-Orange) ───── */
  body {
    background-color: #FFF4E6;
    background-image:
      radial-gradient(ellipse 80% 60% at 10% 0%,   rgba(232,100,58,0.24) 0%, transparent 60%),
      radial-gradient(ellipse 60% 50% at 90% 10%,  rgba(212,137,42,0.18) 0%, transparent 55%),
      radial-gradient(ellipse 70% 60% at 50% 100%, rgba(212,137,42,0.20) 0%, transparent 60%),
      radial-gradient(ellipse 50% 40% at 80% 60%,  rgba(232,100,58,0.14) 0%, transparent 50%),
      radial-gradient(ellipse 40% 30% at 20% 80%,  rgba(193,68,14,0.12)  0%, transparent 50%),
      linear-gradient(145deg, #FFF4E6 0%, #FFE8D0 40%, #FFF0E0 70%, #FFF8F2 100%);
    color: var(--text);
  }
  body::before {
    background:
      radial-gradient(ellipse 30% 20% at 15% 15%, rgba(255,200,140,0.18) 0%, transparent 100%),
      radial-gradient(ellipse 20% 15% at 85% 85%, rgba(255,170,80,0.12)  0%, transparent 100%);
  }

  /* ── Header ────────────────────────────────────────── */
  .rr-header {
    background: rgba(255,232,205,0.88);
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    border-bottom: 1px solid rgba(193,68,14,0.14);
    box-shadow: 0 1px 0 rgba(255,255,255,0.80) inset, 0 4px 20px rgba(120,50,10,0.12);
  }
  .rr-brand { color: #2C1608; }
  .rr-brand:hover { color: #C1440E; }
  .rr-header-search {
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(193,68,14,0.22);
    box-shadow: 0 1px 0 rgba(255,255,255,0.90) inset;
  }
  .rr-header-search input { color: #2C1608; }
  .rr-header-search input::placeholder { color: rgba(80,38,12,0.38); }
  .rr-icon-btn {
    background: rgba(255,255,255,0.65);
    border: 1px solid rgba(193,68,14,0.18);
    color: rgba(80,38,12,0.65);
  }
  .rr-icon-btn:hover {
    background: rgba(255,255,255,0.90);
    border-color: rgba(193,68,14,0.40);
    color: #2C1608;
    box-shadow: 0 0 12px rgba(193,68,14,0.20);
  }
  .rr-user-name { color: rgba(44,22,8,0.85); }

  /* ── Sidebar ───────────────────────────────────────── */
  .rr-sidebar {
    background: rgba(255,236,210,0.88);
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    border-right: 1px solid rgba(193,68,14,0.14);
    box-shadow: 1px 0 0 rgba(255,255,255,0.70) inset, 4px 0 24px rgba(120,50,10,0.10);
  }
  .rr-sidebar-brand { border-bottom: 1px solid rgba(193,68,14,0.12); }
  .rr-sidebar-brand a { color: #2C1608; }
  .rr-sidebar-user { border-bottom: 1px solid rgba(193,68,14,0.12); }
  .rr-sidebar-user-name { color: rgba(44,22,8,0.90); }
  .rr-sidebar-user-role { color: rgba(80,38,12,0.45); }
  .rr-nav-label { color: rgba(80,38,12,0.35); }
  .rr-nav-link {
    color: rgba(80,38,12,0.58);
    border: 1px solid transparent;
  }
  .rr-nav-link:hover {
    background: rgba(193,68,14,0.09);
    color: rgba(44,22,8,0.90);
    border-color: rgba(193,68,14,0.18);
  }
  .rr-sidebar-footer { border-top: 1px solid rgba(193,68,14,0.12); }
  .rr-sidebar-footer a,
  .rr-sidebar-footer button { color: rgba(80,38,12,0.48); }
  .rr-sidebar-footer a:hover,
  .rr-sidebar-footer button:hover { color: #C1440E; }

  /* ── Seitentitel ───────────────────────────────────── */
  .rr-page-title, .page-title, h1 {
    color: #2C1608;
    text-shadow: 0 1px 6px rgba(120,50,10,0.10);
  }
  h2 { color: rgba(44,22,8,0.88); }
  .rr-page-subtitle, .page-subtitle { color: var(--text-2); }
  .section-title { color: rgba(44,22,8,0.85); }

  /* ── Cards ─────────────────────────────────────────── */
  .card, .rr-card {
    background: rgba(255,255,255,0.80) !important;
    backdrop-filter: blur(14px) saturate(130%);
    -webkit-backdrop-filter: blur(14px) saturate(130%);
    border: 1px solid rgba(193,68,14,0.18) !important;
    box-shadow:
      0 1px 0 rgba(255,255,255,0.95) inset,
      0 6px 24px rgba(120,50,10,0.14) !important;
    color: #2C1608;
  }
  .card::before, .rr-card::before {
    background: linear-gradient(180deg, rgba(255,255,255,0.60) 0%, transparent 100%);
  }
  .card-body { color: #2C1608; }
  .card-header, .rr-card-header {
    background: rgba(255,240,220,0.70) !important;
    border-bottom: 1px solid rgba(193,68,14,0.14) !important;
    color: #2C1608 !important;
  }

  /* ── Stat-Cards ────────────────────────────────────── */
  .rr-stat-card {
    background: rgba(255,255,255,0.80);
    backdrop-filter: blur(16px) saturate(130%);
    -webkit-backdrop-filter: blur(16px) saturate(130%);
    border: 1px solid rgba(193,68,14,0.18);
    box-shadow:
      0 1px 0 rgba(255,255,255,0.95) inset,
      0 6px 24px rgba(120,50,10,0.14);
  }
  .rr-stat-card::before {
    background: linear-gradient(180deg, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0.00) 100%);
  }
  .rr-stat-card:hover {
    box-shadow:
      0 1px 0 rgba(255,255,255,0.95) inset,
      0 12px 36px rgba(120,50,10,0.22),
      0 0 28px rgba(193,68,14,0.12);
  }
  .rr-stat-value { color: #2C1608; }
  .rr-stat-label { color: var(--text-2); }

  /* ── Recipe Cards ──────────────────────────────────── */
  .rr-recipe-card {
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(193,68,14,0.18);
    box-shadow:
      0 1px 0 rgba(255,255,255,0.95) inset,
      0 6px 24px rgba(120,50,10,0.14);
  }
  .rr-recipe-card:hover {
    box-shadow:
      0 1px 0 rgba(255,255,255,0.95) inset,
      0 16px 48px rgba(120,50,10,0.22),
      0 0 32px rgba(193,68,14,0.15);
    border-color: rgba(193,68,14,0.32);
  }
  .rr-recipe-card::before {
    background: linear-gradient(180deg,
      rgba(255,255,255,0.30) 0%,
      rgba(255,255,255,0.00) 40%,
      rgba(80,30,5,0.40) 100%);
  }
  .rr-recipe-body {
    background: rgba(255,240,220,0.85);
    backdrop-filter: blur(4px);
  }
  .rr-recipe-title { color: rgba(44,22,8,0.95); }
  .rr-recipe-meta  { color: var(--text-2); }
  .rr-recipe-footer {
    border-top: 1px solid rgba(193,68,14,0.12);
    background: rgba(255,230,205,0.60);
  }
  .card-recipe {
    background: rgba(255,255,255,0.78) !important;
    border: 1px solid rgba(193,68,14,0.18) !important;
    box-shadow: 0 6px 24px rgba(120,50,10,0.14) !important;
    color: #2C1608 !important;
  }
  .card-recipe:hover {
    box-shadow: 0 16px 48px rgba(120,50,10,0.22), 0 0 28px rgba(193,68,14,0.12) !important;
    border-color: rgba(193,68,14,0.30) !important;
  }
  .card-recipe .card-body  { color: #2C1608; }
  .card-recipe .card-title { color: #2C1608; }
  .card-recipe .text-muted { color: var(--text-2) !important; }

  /* ── Badges ────────────────────────────────────────── */
  .badge {
    border: 1px solid rgba(193,68,14,0.20);
  }
  .badge.bg-success,  .badge-success  { background: rgba(74,110,42,0.14)  !important; color: #3A6020; border-color: rgba(74,110,42,0.30); }
  .badge.bg-primary,  .badge-primary  { background: rgba(193,68,14,0.14)  !important; color: #9E3109; border-color: rgba(193,68,14,0.35); }
  .badge.bg-secondary,.badge-neutral  { background: rgba(80,38,12,0.08)   !important; color: rgba(80,38,12,0.65); border-color: rgba(80,38,12,0.15); }
  .badge.bg-warning,  .badge-warning  { background: rgba(200,120,10,0.14)  !important; color: #8B5A00; border-color: rgba(200,120,10,0.30); }
  .badge.bg-info,     .badge-info     { background: rgba(37,99,235,0.12)   !important; color: #1D4ED8; border-color: rgba(37,99,235,0.28); }
  .badge.bg-danger,   .badge-danger   { background: rgba(217,64,64,0.14)   !important; color: #B91C1C; border-color: rgba(217,64,64,0.30); }

  /* ── Buttons (nur Sekundär/Outline — Primär bleibt orange) */
  .btn-secondary, .btn-outline-secondary {
    background: rgba(255,255,255,0.70) !important;
    color: rgba(44,22,8,0.75) !important;
    border: 1px solid rgba(193,68,14,0.22) !important;
  }
  .btn-secondary:hover, .btn-outline-secondary:hover {
    background: rgba(255,255,255,0.92) !important;
    color: #2C1608 !important;
  }
  .btn-outline-primary {
    background: rgba(193,68,14,0.08) !important;
    color: #9E3109 !important;
    border: 1px solid rgba(193,68,14,0.40) !important;
  }
  .btn-outline-primary:hover {
    background: rgba(193,68,14,0.16) !important;
    color: #7A2507 !important;
  }
  .btn-outline-light {
    background: rgba(255,255,255,0.65) !important;
    color: rgba(44,22,8,0.75) !important;
    border: 1px solid rgba(193,68,14,0.22) !important;
  }
  .btn-outline-light:hover {
    background: rgba(255,255,255,0.90) !important;
    color: #2C1608 !important;
  }
  .btn-close { filter: none; opacity: 0.55; }
  .btn-close:hover { filter: none; opacity: 0.85; }

  /* ── Forms / Inputs ────────────────────────────────── */
  .form-control, .form-select {
    background: rgba(255,255,255,0.75) !important;
    border: 1px solid rgba(193,68,14,0.22) !important;
    color: #2C1608 !important;
  }
  .form-control:focus, .form-select:focus {
    background: rgba(255,255,255,0.95) !important;
    border-color: rgba(193,68,14,0.60) !important;
    box-shadow: 0 0 0 3px rgba(193,68,14,0.14) !important;
    color: #2C1608 !important;
  }
  .form-control::placeholder { color: rgba(80,38,12,0.38) !important; }
  .form-label { color: rgba(44,22,8,0.72); }
  .form-select option { background: #FFF0E0; color: #2C1608; }

  /* ── Tables ────────────────────────────────────────── */
  .table {
    --bs-table-bg: transparent;
    --bs-table-accent-bg: transparent;
    --bs-table-striped-bg: rgba(44,22,8,0.035);
    --bs-table-striped-color: rgba(44,22,8,0.85);
    --bs-table-active-bg: rgba(44,22,8,0.06);
    --bs-table-active-color: rgba(44,22,8,0.90);
    --bs-table-hover-bg: rgba(44,22,8,0.045);
    --bs-table-hover-color: rgba(44,22,8,0.90);
    --bs-table-color: rgba(44,22,8,0.85);
    --bs-table-border-color: rgba(193,68,14,0.12);
    color: rgba(44,22,8,0.85) !important;
    border-color: rgba(193,68,14,0.12) !important;
  }
  .table thead th {
    color: rgba(80,38,12,0.55) !important;
    border-color: rgba(193,68,14,0.14) !important;
  }
  .table tbody tr { border-color: rgba(193,68,14,0.08) !important; }
  .table tbody tr:hover { background: rgba(193,68,14,0.05) !important; }
  .table-hover > tbody > tr:hover > * { background: rgba(193,68,14,0.06) !important; color: rgba(44,22,8,0.95); }
  .table-bordered { border-color: rgba(193,68,14,0.12) !important; }
  .table-bordered td, .table-bordered th { border-color: rgba(193,68,14,0.12) !important; }
  .table-light { background: rgba(255,235,210,0.55) !important; }
  .table-light th { color: rgba(80,38,12,0.70) !important; background: rgba(255,235,210,0.55) !important; }

  /* ── Modals ────────────────────────────────────────── */
  .modal-content {
    background: rgba(255,248,238,0.96) !important;
    backdrop-filter: blur(24px) saturate(140%);
    -webkit-backdrop-filter: blur(24px) saturate(140%);
    border: 1px solid rgba(193,68,14,0.18) !important;
    color: #2C1608;
    box-shadow: 0 24px 80px rgba(120,50,10,0.30);
  }
  .modal-header {
    border-bottom: 1px solid rgba(193,68,14,0.12) !important;
    background: rgba(255,235,210,0.70);
  }
  .modal-title { color: #2C1608; }
  .modal-footer {
    border-top: 1px solid rgba(193,68,14,0.12) !important;
    background: rgba(255,235,210,0.40);
  }

  /* ── Navbar ────────────────────────────────────────── */
  .navbar.bg-primary, .navbar.navbar-dark.bg-primary {
    background: rgba(255,232,205,0.92) !important;
    backdrop-filter: blur(24px) saturate(150%);
    -webkit-backdrop-filter: blur(24px) saturate(150%);
    border-bottom: 1px solid rgba(193,68,14,0.14) !important;
    box-shadow: 0 4px 20px rgba(120,50,10,0.12);
  }
  .navbar-brand { color: #2C1608 !important; }
  .nav-link { color: rgba(80,38,12,0.65) !important; }
  .nav-link:hover, .nav-link.active { color: #C1440E !important; }

  /* ── Login ─────────────────────────────────────────── */
  .rr-login-card {
    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    border: 1px solid rgba(193,68,14,0.20);
    box-shadow:
      0 1px 0 rgba(255,255,255,0.95) inset,
      0 24px 80px rgba(120,50,10,0.22),
      0 0 50px rgba(193,68,14,0.08);
  }
  .rr-login-card::before {
    background: linear-gradient(180deg, rgba(255,255,255,0.55) 0%, transparent 100%);
  }
  .rr-login-logo { color: #2C1608; }
  .rr-login-sub  { color: var(--text-2); }
  .rr-divider { color: var(--text-3); }
  .rr-divider::before, .rr-divider::after { background: rgba(193,68,14,0.16); }
  .rr-error {
    background: rgba(217,64,64,0.10);
    border-color: rgba(217,64,64,0.28);
    color: #B91C1C;
  }
  .rr-success {
    background: rgba(74,110,42,0.10);
    border-color: rgba(74,110,42,0.28);
    color: #3A6020;
  }

  /* ── Hero ──────────────────────────────────────────── */
  .rr-hero {
    background: linear-gradient(135deg,
      rgba(255,220,185,0.95) 0%,
      rgba(255,190,130,0.92) 50%,
      rgba(232,100,58,0.85)  100%);
    border: 1px solid rgba(193,68,14,0.22);
    box-shadow:
      0 1px 0 rgba(255,255,255,0.70) inset,
      0 16px 48px rgba(120,50,10,0.20);
  }
  .rr-hero::before {
    background: linear-gradient(180deg, rgba(255,255,255,0.35) 0%, rgba(255,255,255,0.00) 100%);
  }
  .rr-hero-title { color: #2C1608; }
  .rr-hero-sub   { color: rgba(44,22,8,0.65); }

  /* ── Rezeptdetail ──────────────────────────────────── */
  .ingredient-amount { color: #C1440E; }
  .ingredient-row {
    border-bottom: 1px solid rgba(193,68,14,0.10);
    color: rgba(44,22,8,0.82);
  }
  .step-item { border-bottom: 1px solid rgba(193,68,14,0.10); }
  .step-text { color: rgba(44,22,8,0.80); }

  /* ── Diverses ──────────────────────────────────────── */
  .text-muted   { color: var(--text-2) !important; }
  .text-primary { color: #C1440E !important; }
  .text-success { color: #3A6020 !important; }
  .text-danger  { color: #B91C1C !important; }
  .text-warning { color: #8B5A00 !important; }
  .bg-light     { background: rgba(255,235,210,0.55) !important; }

  .list-group-item {
    background: rgba(255,255,255,0.68) !important;
    border-color: rgba(193,68,14,0.14) !important;
    color: rgba(44,22,8,0.82) !important;
  }
  .list-group-item:hover {
    background: rgba(255,255,255,0.92) !important;
    color: #2C1608 !important;
  }

  .alert-danger {
    background: rgba(217,64,64,0.10) !important;
    border-color: rgba(217,64,64,0.28) !important;
    color: #B91C1C !important;
  }
  .alert-success {
    background: rgba(74,110,42,0.10) !important;
    border-color: rgba(74,110,42,0.28) !important;
    color: #3A6020 !important;
  }

  /* Dropdown */
  .dropdown-menu {
    background: rgba(255,248,238,0.96) !important;
    backdrop-filter: blur(16px);
    border: 1px solid rgba(193,68,14,0.18) !important;
  }
  .dropdown-item { color: rgba(44,22,8,0.78) !important; }
  .dropdown-item:hover { background: rgba(193,68,14,0.08) !important; color: #2C1608 !important; }
  .dropdown-menu-dark { background: rgba(255,248,238,0.96) !important; }

  /* Scrollbar */
  ::-webkit-scrollbar-thumb { background: rgba(193,68,14,0.25); }
  ::-webkit-scrollbar-thumb:hover { background: rgba(193,68,14,0.42); }

  /* Meal-Slot */
  .meal-slot {
    background: rgba(255,255,255,0.50) !important;
    border: 1px dashed rgba(193,68,14,0.30) !important;
    color: rgba(80,38,12,0.50) !important;
  }
  .meal-slot:hover {
    background: rgba(193,68,14,0.10) !important;
    border-color: rgba(193,68,14,0.55) !important;
    color: rgba(44,22,8,0.80) !important;
  }
  .meal-slot.filled {
    background: rgba(74,110,42,0.14) !important;
    border: 1px solid rgba(74,110,42,0.38) !important;
    color: #3A6020 !important;
  }
}
