/* Tenant A타입 디자인 토큰 - 파란색 계열 */
:root {
    /* Primary Colors - Blue */
    --c-brand: #1e40af;
    --c-brand-light: #3b82f6;
    --c-brand-dark: #1e3a8a;
    
    /* Secondary Colors */
    --c-accent: #0ea5e9;
    --c-accent-light: #38bdf8;
    
    /* Background */
    --c-bg: #f8fafc;
    --c-bg-secondary: #f1f5f9;
    
    /* Text */
    --c-fg: #1e293b;
    --c-fg-muted: #64748b;
    
    /* Borders */
    --c-border: #e2e8f0;
    --c-border-light: #f1f5f9;
    
    /* Status Colors */
    --c-success: #10b981;
    --c-warning: #f59e0b;
    --c-danger: #ef4444;
    --c-info: #3b82f6;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(30, 64, 175, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(30, 64, 175, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(30, 64, 175, 0.15);
}
