/* 
 * iNexxus-25 Theme Variables
 * CSS Variables for light and dark themes
 */

/* Light Theme Variables */
:root {
    --bg-color: #ffffff;
    --card-color: #ffffff;
    --card-bg: #ffffff;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-muted: #9ca3af;
    --border-color: #e5e7eb;
    --border-light: #f3f4f6;
    --accent-color: #00e09b;
    --accent-hover: #00c78a;
    --primary-color: #009e6e;
    --secondary-color: #6b7280;
    --success-color: #10b981;
    --error-color: #ef4444;
    --warning-color: #f59e0b;
    --info-color: #3b82f6;
    --input-bg: #ffffff;
    --input-focus-bg: #f9fafb;
    --section-bg: #f9fafb;
    --footer-bg: #f9fafb;
    --dropdown-bg: #ffffff;
    --bg-gradient-start: #f8fafc;
    --bg-gradient-end: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Dark Theme Variables */
body.dark {
    --bg-color: #101012;
    --card-color: #1e1e21;
    --card-bg: #1e1e21;
    --card-bg-dark: #1e1e21;
    --text-primary: #f3f4f6;
    --text-primary-dark: #f3f4f6;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    --border-color: #2f2f33;
    --border-color-dark: #2f2f33;
    --border-light: #1e1e21;
    --accent-color: #00e09b;
    --accent-hover: #00c78a;
    --primary-color: #009e6e;
    --secondary-color: #6b7280;
    --success-color: #10b981;
    --error-color: #ef4444;
    --warning-color: #f59e0b;
    --info-color: #3b82f6;
    --input-bg: #2f2f33;
    --input-bg-dark: #2f2f33;
    --input-focus-bg: #3f3f43;
    --input-focus-bg-dark: #3f3f43;
    --section-bg: #2f2f33;
    --section-bg-dark: #2f2f33;
    --footer-bg: #2f2f33;
    --footer-bg-dark: #2f2f33;
    --dropdown-bg: #2f2f33;
    --dropdown-bg-dark: #2f2f33;
    --bg-gradient-start: #1a1a1c;
    --bg-gradient-end: #2f2f33;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -2px rgba(0, 0, 0, 0.3);
} 