/**
 * CSS Variables for ia_server
 * Centralized color and spacing definitions
 */

:root {
    /* Primary Colors */
    --color-primary: #007bff;
    --color-primary-hover: #0056b3;
    --color-primary-light: #e7f1ff;

    /* Status Colors */
    --color-success: #28a745;
    --color-success-hover: #218838;
    --color-success-bg: #d4edda;
    --color-success-text: #155724;

    --color-danger: #dc3545;
    --color-danger-hover: #c82333;
    --color-danger-bg: #f8d7da;
    --color-danger-text: #721c24;

    --color-warning: #ffc107;
    --color-warning-hover: #e0a800;
    --color-warning-bg: #fff3cd;
    --color-warning-text: #856404;

    --color-info: #17a2b8;
    --color-info-hover: #138496;
    --color-info-bg: #d1ecf1;
    --color-info-text: #0c5460;

    /* Neutral Colors */
    --color-white: #ffffff;
    --color-gray-100: #f8f9fa;
    --color-gray-200: #e9ecef;
    --color-gray-300: #dee2e6;
    --color-gray-400: #ced4da;
    --color-gray-500: #adb5bd;
    --color-gray-600: #6c757d;
    --color-gray-700: #495057;
    --color-gray-800: #343a40;
    --color-gray-900: #212529;
    --color-black: #000000;

    /* Text Colors */
    --color-text-primary: #333333;
    --color-text-secondary: #6c757d;
    --color-text-muted: #adb5bd;

    /* Background Colors */
    --color-bg-body: #f8f9fa;
    --color-bg-card: #ffffff;
    --color-bg-hover: #f5f5f5;

    /* Border Colors */
    --color-border: #dee2e6;
    --color-border-light: #e9ecef;

    /* Permission Colors */
    --color-permission-active: #007bff;
    --color-permission-inactive: #adb5bd;

    /* Star/Default Color */
    --color-star: #ffc107;

    /* Spacing */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-xxl: 48px;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;
    --radius-xl: 12px;
    --radius-pill: 50px;
    --radius-circle: 50%;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.2s ease;
    --transition-slow: 0.3s ease;

    /* Font Sizes */
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-md: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-xxl: 1.5rem;

    /* Font Weights */
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    /* Z-Index Layers */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal-backdrop: 400;
    --z-modal: 500;
    --z-popover: 600;
    --z-tooltip: 700;
    --z-toast: 800;
}
