/* theme.css - Design Tokens & Base Styles */
:root {
    /* [Core Colors] */
    --primary-color: #2c3e50;      
    --bg-gray: #f4f7f6;           
    --sidebar-width: 240px;
    --header-height: 40px;        
    --main-padding: 25px;
    --font-main: 'Pretendard', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

    /* [Button Palette] */
    --btn-main-bg: #34495e;       /* 메인 실행 */
    --btn-sub-bg: #576574;        /* 보조 실행 */
    --btn-popup-bg: #8e44ad;      /* 팝업/차트 */
    --btn-save-bg: #27ae60;       /* 저장/등록 */
    --btn-danger-bg: #c0392b;     /* 삭제/위험 */
    --btn-setting-bg: #95a5a6;    /* 설정/일반 */
    --btn-down-bg: #ecf0f1;       /* 다운로드 */
    --btn-close-bg: #bdc3c7;      /* 닫기 */

    /* [Legacy Colors] 호환성 유지 */
    --accent-blue: #3498db;
    --accent-green: #27ae60;
    --accent-red: #e74c3c;
}

/* [Base Reset] */
body { 
    font-family: var(--font-main);
    display: flex; 
    margin: 0; 
    height: 100vh; 
    background: var(--bg-gray); 
    overflow: hidden; 
    color: #333;
}