/* BankFlow - CSS 변수 정의 (v2 — Modern SaaS) */

:root {
    /* 브랜드 색상 */
    --bf-primary: #2563eb;
    --bf-primary-hover: #1d4ed8;
    --bf-primary-light: #dbeafe;
    --bf-primary-dark: #1e40af;
    --bf-primary-glow: rgba(37, 99, 235, 0.12);

    /* 상태 색상 */
    --bf-success: #16a34a;
    --bf-success-light: #dcfce7;
    --bf-warning: #d97706;
    --bf-warning-light: #fef3c7;
    --bf-danger: #dc2626;
    --bf-danger-light: #fee2e2;
    --bf-info: #0891b2;
    --bf-info-light: #cffafe;

    /* 입금/출금 색상 */
    --bf-deposit: #2563eb;
    --bf-deposit-bg: #dbeafe;
    --bf-withdrawal: #dc2626;
    --bf-withdrawal-bg: #fee2e2;

    /* 폰트 */
    --bf-font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --bf-font-mono: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;

    /* 폰트 크기 */
    --bf-text-xs: 0.75rem;
    --bf-text-sm: 0.8125rem;
    --bf-text-base: 0.9375rem;
    --bf-text-lg: 1.0625rem;
    --bf-text-xl: 1.25rem;
    --bf-text-2xl: 1.5rem;
    --bf-text-3xl: 1.875rem;
    --bf-text-4xl: 2.25rem;

    /* 간격 */
    --bf-space-1: 0.25rem;
    --bf-space-2: 0.5rem;
    --bf-space-3: 0.75rem;
    --bf-space-4: 1rem;
    --bf-space-5: 1.25rem;
    --bf-space-6: 1.5rem;
    --bf-space-8: 2rem;
    --bf-space-10: 2.5rem;
    --bf-space-12: 3rem;

    /* 모서리 — 더 부드럽게 */
    --bf-radius-sm: 0.375rem;
    --bf-radius: 0.625rem;
    --bf-radius-lg: 0.875rem;
    --bf-radius-xl: 1.125rem;
    --bf-radius-2xl: 1.5rem;
    --bf-radius-full: 9999px;

    /* 그림자 — 더 부드럽고 넓게 */
    --bf-shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
    --bf-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --bf-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
    --bf-shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
    --bf-shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(0, 0, 0, 0.04);
    --bf-shadow-xl: 0 20px 48px rgba(0, 0, 0, 0.12), 0 8px 16px rgba(0, 0, 0, 0.06);
    --bf-shadow-primary: 0 4px 16px rgba(37, 99, 235, 0.25);

    /* 사이드바 */
    --bf-sidebar-width: 260px;
    --bf-sidebar-collapsed: 72px;

    /* 전환 — 더 부드럽게 */
    --bf-transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --bf-transition-slow: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --bf-transition-spring: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
