/*
Theme Name: PaperMail - AI Document Management System
Theme URI: https://www.idealizer.ch/wordpress/papermail
Description: A custom WordPress theme for managing documents with AI integration
Version: 1.0
Author: Idealizer LLC
Author URI: https://www.idealizer.ch
Textdomain: papermail
*/

:root {
  --primary-color: #4f46e5;
  --primary-hover: #4338ca;
  --secondary-color: #10b981;
  --danger-color: #ef4444;
  --warning-color: #f59e0b;
  --info-color: #3b82f6;
  --success-color: #10b981;
  
  --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;
  
  --bg-color: #ffffff;
  --card-bg: #ffffff;
  --text-color: var(--gray-900);
  --text-muted: var(--gray-500);
  --border-color: var(--gray-200);
  
  --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 0 rgba(0, 0, 0, 0.06);
  --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);
  
  --font-sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

html.dark {
  --bg-color: var(--gray-900);
  --card-bg: var(--gray-800);
  --text-color: var(--gray-50);
  --text-muted: var(--gray-400);
  --border-color: var(--gray-700);
}

/* Base theme styles will be included here */ 