/* 
 * ChatMinder CSS Variables
 * Single source of truth for colors, spacing, and design tokens
 * Modify these values to restyle the entire application
 */

:root {
    /* Primary Brand Colors - Updated to match ChatMinder.app */
    --color-primary: #6200ea;
    --color-primary-dark: #3700b3;
    --color-primary-light: #7c4dff;
    
    /* Secondary Colors */
    --color-secondary: #2196f3;
    --color-secondary-dark: #1976d2;
    --color-secondary-gradient-start: #6200ea;
    --color-secondary-gradient-end: #7c4dff;
    
    /* UI Colors - Updated to match ChatMinder.app */
    --color-success: #4caf50;
    --color-info: #2196f3;
    --color-warning: #ff9800;
    --color-danger: #f44336;
    
    /* Neutral Colors */
    --color-white: #ffffff;
    --color-black: #000000;
    --color-gray-50: #fafafa;
    --color-gray-100: #f5f5f5;
    --color-gray-200: #eeeeee;
    --color-gray-300: #e0e0e0;
    --color-gray-400: #bdbdbd;
    --color-gray-500: #9e9e9e;
    --color-gray-600: #757575;
    --color-gray-700: #616161;
    --color-gray-800: #424242;
    --color-gray-900: #212121;
    
    /* Semantic Colors - Updated to match ChatMinder.app */
    --color-text-primary: #000000;
    --color-text-secondary: #777777;
    --color-text-muted: #757575;
    --color-text-dark: #424242;
    
    --color-link: #2196f3;
    --color-link-hover: #1976d2;
    
    --color-border: #e0e0e0;
    --color-border-light: #f0f0f0;
    
    --color-background: #ffffff;
    --color-background-gray: #f5f5f5;
    --color-background-info: #e3f2fd;
    
    /* Focus and Active States */
    --color-focus: #6200ea;
    --color-focus-shadow: rgba(98, 0, 234, 0.25);
    
    /* Specific Feature Colors */
    --color-avatar-blue: #6200ea;
    --color-avatar-shadow: rgba(98, 0, 234, 0.3);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 9999px;
    
    /* Spacing (for consistency) */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    
    /* Typography */
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    
    /* Icon Sizes */
    --icon-size-sm: 1.5rem;
    --icon-size-md: 2rem;
    --icon-size-lg: 2.5rem;
    --icon-size-xl: 3rem;
    
    /* Circle Badge Sizes */
    --circle-badge-sm: 40px;
    --circle-badge-md: 60px;
    --circle-badge-lg: 80px;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}
