/**
 * Chatlyx Design System
 * ---------------------
 * Core variables for the Chatlyx plugin.
 * Scoped to .chatlyx-scope to prevent global pollution.
 */

:root {

    /* --chatlyx-primary is defined dynamically via inline PHP usually, 
       but we define a fallback here */
    --chatlyx-primary: #000000;
    /* Black */

    /* Semantic Colors */
    --chatlyx-secondary: #f3f4f6;
    /* Gray-100 */
    --chatlyx-text-dark: #111827;
    /* Gray-900 */
    --chatlyx-text-light: #ffffff;
    --chatlyx-text-muted: #6b7280;
    /* Gray-500 */
    --chatlyx-border: #e5e7eb;
    /* Gray-200 */
    --chatlyx-bg-light: #ffffff;
    --chatlyx-bg-overlay: rgba(0, 0, 0, 0.05);

    /* Status Colors */
    --chatlyx-success: #10b981;
    --chatlyx-danger: #ef4444;
    --chatlyx-active: #2563eb;

    /* Typography */
    --chatlyx-font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --chatlyx-font-base: 14px;
    --chatlyx-font-sm: 13px;
    --chatlyx-font-lg: 16px;
    --chatlyx-font-weight-regular: 400;
    --chatlyx-font-weight-medium: 500;
    --chatlyx-font-weight-bold: 600;

    /* Spacing & Layout */
    --chatlyx-radius-sm: 6px;
    --chatlyx-radius-md: 12px;
    --chatlyx-radius-lg: 16px;
    --chatlyx-radius-full: 9999px;
    --chatlyx-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --chatlyx-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --chatlyx-shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --chatlyx-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Z-Index */
    --chatlyx-z-index: 999999;
    --chatlyx-launcher-bg: #000000;
    --chatlyx-header-bg: #000000;
}