/* ==========================================
   SUMAWATCH THEME - variables.css
   Theme variables for easy customization
   ========================================== */

:root {
    /* Brand Colors */
    --primary: #2A5CAA;
    --primary-dark: #1A4B8C;
    --footer-bg:#424656;

    /* Text Colors */
    --text-main: #333;
    --text-muted: #555;
    --text-light: #888;

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

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

    /* Sidebar */
    --sidebar-title-bg: #ebefee;
    --sidebar-title-text: #2A5CAA;

    /* 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);
}
