/* Common Variables (applied to all modes) */
:root {
    --font-family-base: 'Arial', sans-serif;
    --font-family-heading: 'Georgia', serif;
    --font-size-base: 16px;
    --font-size-small: 14px;
    --font-size-h1: 2.5em;
    --font-size-h2: 2em;
    --font-size-h3: 1.75em;
    --font-size-h4: 1.5em;
    --font-size-h5: 1.25em;
    --font-size-h6: 1em;
    --line-height: 1.5;
    --line-height-heading: 1.3;

    --background: #f9f9f9;
    --modal-bg: rgba(255, 255, 255, 0.95);
    --text-color: #24292f;
    --disabled-text: #6a737d;
    --button-bg: #0366d6;
    --button-text: #ffffff;
    --disabled-bg: #d1d5da;
    --primary-color: #0366d6;
    --secondary-color: #e1e4e8;
    --hover-color: rgba(3, 102, 214, 0.1);
    --border-color: #d1d5da;
    --background-color-muted: #f9f9f9;

    /* Misc */
    --error-color: red;
}

/* Default Mode Variables (inherits from root) */
.eventive-default-mode {
    --background: var(--background);
    --modal-bg: var(--modal-bg);
    --text-color: var(--text-color);
    --disabled-text: var(--disabled-text);
    --button-bg: var(--button-bg);
    --button-text: var(--button-text);
    --disabled-bg: var(--disabled-bg);
    --primary-color: var(--primary-color);
    --secondary-color: var(--secondary-color);
    --hover-color: var(--hover-color);
    --border-color: var(--border-color);
    --background-color-muted: var(--background-color-muted);
}

/* Dark Mode Variables */
.eventive-dark-mode {
    --background: #0d1117;
    --modal-bg: rgba(13, 17, 23, 0.95);
    --text-color: #c9d1d9;
    --disabled-text: #6e7681;
    --button-bg: #21262d;
    --button-text: #f0f6fc;
    --disabled-bg: #2d333b;
    --primary-color: #58a6ff;
    --secondary-color: #30363d;
    --hover-color: rgba(88, 166, 255, 0.2);
    --border-color: #30363d;
    --background-color-muted: #21262d;
}

/* Light Mode Variables */
.eventive-light-mode {
    --background: #ffffff; /* Brighter than default */
    --modal-bg: rgba(255, 255, 255, 0.98);
    --text-color: #1a1a1a; /* Slightly darker for better contrast */
    --disabled-text: #7d7d7d; /* Slightly muted text */
    --button-bg: #0056b3; /* Richer blue */
    --button-text: #ffffff;
    --disabled-bg: #e6e6e6; /* Lighter than default */
    --primary-color: #0056b3;
    --secondary-color: #f5f5f5;
    --hover-color: rgba(0, 86, 179, 0.1); /* Richer blue hover */
    --border-color: #e6e6e6;
    --background-color-muted: #f5f5f5; /* Slightly brighter muted background */
}