﻿    /* ========================================
       Base Styles
       ======================================== */
  
    * {
        margin: 0;
        padding: 1px;
        box-sizing: border-box;
    }
  
    html, body {
        height: 100%;
        width: 100%;
        overflow: hidden;
    }
  
    body {
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        font-size: 14px;
        line-height: 1.5;
        color: var(--text-primary);
        background: var(--bg-primary);
    }
  
    /* Scrollbar Styles */
    ::-webkit-scrollbar {
        width: 8px;
        height: 8px;
    }
  
    ::-webkit-scrollbar-track {
        background: var(--bg-secondary);
        border-radius: 4px;
    }
  
    ::-webkit-scrollbar-thumb {
        background: var(--bg-tertiary);
        border-radius: 4px;
    }
  
    ::-webkit-scrollbar-thumb:hover {
        background: var(--text-muted);
    }
  
