:root {
    /* Light Mode */
    --bg: #f7f7f7;
    --bg-alt: #ffffff;
    --text: #1a1a1a;
    --text-muted: #555555;
    --border: rgba(0, 0, 0, 0.08);

    /* Accent (Light Mode) – Blau */
    --accent: #3B82F6;
    --accent-hover: #2563EB;
}

[data-theme="dark"] {
    --bg: #0d0d0d;
    --bg-alt: #1a1a1a;
    --text: #ffffff;
    --text-muted: #b3b3b3;
    --border: rgba(255, 255, 255, 0.08);

    /* Accent (Dark Mode) – Gelb */
    --accent: #FFD300;
    --accent-hover: #F5C400;
}
