:root {
    /* Colors */
    --primary-color: #2196F3;
    --secondary-color: #f44336;
    --text-color: #333;
    --background-color: #fff;
    --border-color: #ddd;

    /* Typography */
    --font-family-base: 'Arial', sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.5;

    /* Spacing */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;

    /* Border Radius */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;

    /* Transitions */
    --transition-fast: 0.2s;
    --transition-normal: 0.3s;
    --transition-slow: 0.5s;
} 