/* Theme CSS for Data Ecosystem Tools
   Contains theme variables and theme-specific styles */

:root {
  /* Primary Colors */
  --primary-50: #f0f9ff;
  --primary-100: #e0f2fe;
  --primary-200: #bae6fd;
  --primary-300: #7dd3fc;
  --primary-400: #38bdf8;
  --primary-500: #0ea5e9;
  --primary-600: #0284c7;
  --primary-700: #0369a1;
  --primary-800: #075985;
  --primary-900: #0c4a6e;
  --primary-600-rgb: 2, 132, 199; /* RGB value for primary-600 for rgba usage */
  
  /* Neutral Colors */
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  
  /* Semantic Colors */
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;
  --info: #3b82f6;
  
  /* Theme Variables */
  --bg-light: #ffffff;
  --text-light: var(--gray-900);
  --bg-dark: #0f172a;
  --text-dark: #f8fafc;
  --accent: var(--primary-600);
  --card-bg-dark: #1e293b;
  --card-bg-light: #ffffff;
  --border-dark: #2d3748;
  --border-light: #e2e8f0;
  --input-bg-dark: #1e293b;
  --input-bg-light: #ffffff;
  --input-border-dark: #3e4c5a;
  --input-border-light: #d1d5db;
  --tooltip-bg: #2d3748;
  --tooltip-text: #ffffff;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  /* Current Theme */
  --bg: var(--bg-dark);
  --text: var(--text-dark);
  --card-bg: var(--card-bg-dark);
  --border: var(--border-dark);
  --input-bg: var(--input-bg-dark);
  --input-border: var(--input-border-dark);
}

/* Light mode theme */
.light-mode {
  --bg: var(--bg-light);
  --text: var(--text-light);
  --card-bg: var(--card-bg-light);
  --border: var(--border-light);
  --input-bg: var(--input-bg-light);
  --input-border: var(--input-border-light);
}

/* Apply theme to body */
body {
  background-color: var(--bg);
  color: var(--text);
}

/* Theme-specific header styles */
header {
  border-bottom-color: var(--border);
}

/* Theme toggle button icon */
.theme-icon {
  display: inline-block;
  transition: transform 0.3s ease;
}
