/* Clean Modern Dashboard Theme */
.theme-default {
    /* Background colors - light and airy */
    --bg: #f8f9fb;
    --bg-secondary: #f3f4f6;
    --surface: #ffffff;
    --surface-alt: #f5f6f8;

    /* Text colors */
    --text: #1f2937;
    --text-secondary: #4b5563;
    --muted: #9ca3af;
    --text-light: #6b7280;

    /* Primary accent - Teal */
    --primary: #45a7a6;
    --primary-light: #6fc4c3;
    --primary-soft: rgba(69, 167, 166, 0.1);
    --primary-gradient: linear-gradient(135deg, #45a7a6 0%, #5ab8b7 100%);

    /* Secondary accent - Golden */
    --accent: #e8b762;
    --accent-light: #f5d89a;
    --accent-soft: rgba(232, 183, 98, 0.15);
    --secondary: #e8b762;
    --secondary-soft: rgba(232, 183, 98, 0.15);

    /* Tertiary - for additional highlights */
    --tertiary: #fbbf24;
    --tertiary-soft: rgba(251, 191, 36, 0.15);

    /* Chart colors */
    --chart-primary: #45a7a6;
    --chart-primary-light: #6fc4c3;
    --chart-secondary: #e8b762;
    --chart-orange: #fb923c;
    --chart-gray: #d1d5db;

    /* Success/Warning/Danger */
    --success: #10b981;
    --success-soft: rgba(16, 185, 129, 0.1);
    --warning: #f59e0b;
    --warning-soft: rgba(245, 158, 11, 0.1);
    --danger: #ef4444;
    --danger-soft: rgba(239, 68, 68, 0.1);
    --info: #0ea5e9;
    --info-soft: rgba(14, 165, 233, 0.1);

    /* Borders & Shadows */
    --border-subtle: #e5e7eb;
    --border-light: #f3f4f6;
    --shadow-soft: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.03);
    --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 4px 12px rgba(0, 0, 0, 0.06);

    /* Sidebar specific */
    --sidebar-bg: #fafbfc;
    --sidebar-border: #eef0f2;
    --sidebar-active-bg: rgba(69, 167, 166, 0.08);
    --sidebar-active-border: #45a7a6;
    --sidebar-text: #4b5563;
    --sidebar-icon: #9ca3af;

    /* Topbar */
    --topbar-bg: #ffffff;
    --topbar-border: #e5e7eb;

    /* Radius */
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
}