:root {
    /* Light Theme (Default) */
    --bg-color: #f3f4f6;
    --text-color: #1f2937;
    --card-bg: #ffffff;
    --border-color: #e5e7eb;
    --primary-color: #2563eb;
    --primary-hover: #1d4ed8;
    --secondary-bg: #f9fafb;
    --input-bg: #ffffff;
    --input-border: #d1d5db;
    --highlight: #dbeafe;
    --header-bg: #ffffff;
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

[data-theme="dark"] {
    --bg-color: #111827;
    --text-color: #f9fafb;
    --card-bg: #1f2937;
    --border-color: #374151;
    --primary-color: #3b82f6;
    --primary-hover: #60a5fa;
    --secondary-bg: #111827;
    --input-bg: #374151;
    --input-border: #4b5563;
    --highlight: #1e3a8a;
    --header-bg: #1f2937;
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3), 0 1px 2px 0 rgba(0, 0, 0, 0.2);
}

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