/* BankFlow - CSS 변수 정의 */

:root {
    /* 브랜드 색상 */
    --bf-primary: #2563eb;
    --bf-primary-hover: #1d4ed8;
    --bf-primary-light: #dbeafe;
    --bf-primary-dark: #1e40af;

    /* 상태 색상 */
    --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.875rem;
    --bf-text-base: 1rem;
    --bf-text-lg: 1.125rem;
    --bf-text-xl: 1.25rem;
    --bf-text-2xl: 1.5rem;
    --bf-text-3xl: 1.875rem;

    /* 간격 */
    --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.25rem;
    --bf-radius: 0.5rem;
    --bf-radius-lg: 0.75rem;
    --bf-radius-xl: 1rem;
    --bf-radius-full: 9999px;

    /* 그림자 */
    --bf-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --bf-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    --bf-shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.06);
    --bf-shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);

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

    /* 전환 */
    --bf-transition: 0.2s ease;
}
