:root {
    --bg-color: #e5e7eb;
    --card-bg: #ffffff;
    --text-color: #030712;
    --text-muted: #4b5563;
    --accent-color: #dc2626;
    --border-color: #d1d5db;
}

[data-theme="dark"] {
    --bg-color: #020617;
    --card-bg: #0f172a;
    --text-color: #f8fafc;
    --text-muted: #94a3b8;
    --accent-color: #ef4444;
    --border-color: #1e293b;
}

/* Base styles */
body {
    background-color: var(--bg-color);
    color: var(--text-color);
    transition: background-color 0.3s, color 0.3s;
}
