/* ========================================
   GreenStep Hub - CSS Variables & Colors
   Modern Billix-Style Design
   ======================================== */

:root {
    /* Background Colors */
    --bg: #f5f7fa;
    --bg2: #eef2f7;
    --bg-dark: #1a2332;
    --bg-sidebar: rgba(141, 198, 63, 0.3);
    --card: #ffffff;

    /* Brand Colors - Based on Tzaad Yarok Logo */
    --green: #006838;
    --green-light: #e6f2eb;
    --green-lime: #8DC63F;
    --green-lime-light: #e8f5d9;
    --blue: #29ABE2;
    --blue-light: #d4f0fa;
    --yellow: #f59e0b;
    --yellow-light: #fef3c7;
    --orange: #f97316;
    --orange-light: #ffedd5;
    --whatsapp: #25D366;

    /* Text Colors */
    --text: #1e293b;
    --text2: #475569;
    --text3: #94a3b8;
    --text-light: #ffffff;
    --text-muted: #64748b;

    /* UI Colors */
    --border: #e2e8f0;
    --border-light: #f1f5f9;
    --sent: #8b5cf6;
    --note: #f59e0b;
    --calendar: #ec4899;
    --cv: #06b6d4;
    --red: #ef4444;
    --red-light: #fee2e2;

    /* Status Colors */
    --status-new: #29ABE2;
    --status-contacted: #f59e0b;
    --status-interview: #8b5cf6;
    --status-approved: #006838;
    --status-rejected: #ef4444;
    --status-active: #8DC63F;

    /* Sidebar */
    --sidebar-width: 200px;
    --sidebar-collapsed: 60px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.08);

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 20px;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
}
