/* ============================================ */
/* CSS Variables - Design Tokens               */
/* ============================================ */

:root {
    /* Colors */
    --primary-color: #0078A8;
    --secondary-color: #f7a100;
    --background-color: #f8f9fa;
    --text-color: #333;
    --light-text-color: #666;
    --border-color: #ddd;
    --border-subtle: #e2e8f0;
    --bg-subtle: #f8fafc;
    --hover-bg: #f0f7ff;

    /* Sizing */
    --sidebar-width: 380px;
    --filter-height: 50px;
    --fab-size-mobile: 40px;
    --fab-icon-size: 20px;

    /* Typography */
    --font-family: 'Inter', sans-serif;

    /* Transitions */
    --transition-fast: all 0.15s ease;
    --transition-normal: all 0.2s ease;
    --transition-slow: all 0.3s ease;

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

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 20px;
    --radius-full: 50%;
}