/* VSCode theme variable fallbacks for browser */
:root {
  /* Dark theme colors */
  --vscode-foreground: #cccccc;
  --vscode-background: #1e1e1e;
  --vscode-sideBar-background: #252526;
  --vscode-editor-background: #1e1e1e;
  
  /* Input colors */
  --vscode-input-background: #3c3c3c;
  --vscode-input-foreground: #cccccc;
  --vscode-input-border: #3c3c3c;
  --vscode-input-placeholderForeground: #8e8e8e;
  
  /* Button colors */
  --vscode-button-background: #0e639c;
  --vscode-button-foreground: #ffffff;
  --vscode-button-hoverBackground: #1177bb;
  --vscode-button-secondaryBackground: #3a3d41;
  --vscode-button-secondaryForeground: #cccccc;
  --vscode-button-secondaryHoverBackground: #45494e;
  --vscode-button-border: transparent;
  
  /* Panel colors */
  --vscode-panel-border: #3c3c3c;
  
  /* Text colors */
  --vscode-textLink-foreground: #3794ff;
  --vscode-textLink-activeForeground: #4daafc;
  --vscode-descriptionForeground: #8e8e8e;
  --vscode-errorForeground: #f48771;
  
  /* Focus */
  --vscode-focusBorder: #007fd4;
  
  /* Code blocks */
  --vscode-textCodeBlock-background: #0a0a0a;
  
  /* Scrollbar */
  --vscode-scrollbarSlider-background: rgba(121, 121, 121, 0.4);
  --vscode-scrollbarSlider-hoverBackground: rgba(100, 100, 100, 0.7);
  --vscode-scrollbarSlider-activeBackground: rgba(191, 191, 191, 0.4);
  
  /* Dropdown */
  --vscode-dropdown-background: #3c3c3c;
  --vscode-dropdown-border: #3c3c3c;
  
  /* List */
  --vscode-list-hoverBackground: #2a2d2e;
  
  /* Validation */
  --vscode-inputValidation-errorBackground: #5a1d1d;
  --vscode-inputValidation-errorBorder: #be1100;
  
  /* Fonts */
  --vscode-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --vscode-font-size: 13px;
  --vscode-editor-font-family: "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", Consolas, "Courier New", monospace;
}
