/* Original desktop application baseline */
/* =========================================================
       TurkCAD Professional UI Theme - Clean & Corporate
       ========================================================= */
    

    * { box-sizing: border-box; }

    html, body {
      width: 100%;
      height: 100%;
      margin: 0;
      padding: 0;
      overflow: hidden;
      background-color: var(--bg-base);
      color: var(--text-main);
      font-family: var(--font-ui);
      font-size: 13px;
      user-select: none;
    }

    button, input, select, textarea { 
      font-family: inherit; 
      font-size: inherit; 
      color: inherit;
    }

    /* Scrollbar Styling for a Desktop App Feel */
    ::-webkit-scrollbar { width: 12px; height: 12px; }
    ::-webkit-scrollbar-track { background: var(--bg-base); }
    ::-webkit-scrollbar-thumb { 
      background: var(--bg-surface); 
      border: 3px solid var(--bg-base); 
      border-radius: 6px; 
    }
    ::-webkit-scrollbar-thumb:hover { background: var(--bg-surface-hover); }
