/* ==========================================
   SUMAWATCH GREEN THEME - variables.css
   Theme variables for easy customization
   Main color: #4CAF50 | BG: #ffffff | Text: #333333
   ========================================== */

:root {
    /* Brand Colors */
    --primary: #4CAF50;
    --primary-dark: #388E3C;

    /* Text Colors */
    --text-main: #333333;
    --text-muted: #555555;
    --text-light: #888888;

    /* Background Colors */
    --bg-main: #ffffff;
    --bg-secondary: #f7f7f7;

    /* Border Colors */
    --border-light: #e8e8e8;
    --border-dark: #ddd;

    /* Sidebar */
    /* sidebar-title-bg (#2e7d32) is intentionally darker than the ::before accent color (#4CAF50) for clear visual distinction */
    --sidebar-title-bg: #2e7d32;
    --sidebar-title-text: #ffffff;

    /* Footer text: light enough (#cccccc / #aaaaaa) to contrast against the dark footer background (#2e7d32) */
    --footer-text-muted: #cccccc;
    --footer-text-light: #aaaaaa;

    /* Layout */
    --header-height: 60px;
    --sidebar-width: 300px;
    --content-max-width: 1200px;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.12);

    /* Transitions */
    --transition: 0.3s ease;
    --transition-fast: 0.2s ease;

    /* Aliases for main.css compatibility */
    --color-primary: var(--primary);
    --color-primary-dark: var(--primary-dark);
    --color-text: var(--text-main);
    --color-text-muted: var(--text-muted);
    --color-text-light: var(--text-light);
    --color-bg: var(--bg-main);
    --color-bg-secondary: var(--bg-secondary);
    --color-border: var(--border-light);
    --color-border-dark: var(--border-dark);
}