:root {
    /* Helles Design (Standard) */
    --bg-body: #f4f6f8;
    --bg-card: #ffffff;
    --bg-header: rgba(255, 255, 255, 0.95); /* Leicht transparent für Sticky-Effekt */
    --text-main: #212529;
    --text-muted: #6c757d;
    --primary: #4361ee;
    --primary-hover: #3a56d4;
    --success: #2ec4b6;
    --danger: #e63946;
    --border-color: #e9ecef;
    --shadow: 0 4px 6px rgba(0,0,0,0.05);
    --radius: 12px;
    --header-height: 70px;
}

/* Dunkles Design (Aktiviert per Klasse oder System) */
[data-theme="dark"] {
    --bg-body: #121212;
    --bg-card: #1e1e1e;
    --bg-header: rgba(30, 30, 30, 0.95);
    --text-main: #e0e0e0;
    --text-muted: #a0a0a0;
    --primary: #4cc9f0;
    --primary-hover: #3ab0d6;
    --success: #4cc9f0;
    --danger: #ef476f;
    --border-color: #333;
    --shadow: 0 4px 6px rgba(0,0,0,0.3);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    /* Smooth Transition für Farben beim Umschalten */
    transition: background-color 0.3s, color 0.3s;
}
