/* CSS Custom Properties - Design Tokens */
:root {
    /* Background colors */
    --bg-primary: #0e1117;
    --bg-secondary: #262730;
    --bg-sidebar: #1e1e2e;
    
    /* Text colors */
    --text-primary: #fafafa;
    --text-secondary: #a6a6a6;
    
    /* Accent colors */
    --accent-green: #39FF14;
    --accent-red: #ff4b4b;
    
    /* UI colors */
    --border-color: #464853;
    --hover-bg: #2d2d3d;
    --input-bg: #38394a;
}
