:root {
  --bg-primary: #1e1e1e;
  --bg-secondary: #252526;
  --bg-tertiary: #2d2d2d;
  --bg-hover: #2a2d2e;
  --bg-active: #37373d;
  --bg-input: #3c3c3c;
  --bg-titlebar: #323233;
  --bg-statusbar: #007acc;
  --bg-panel-header: #252526;

  --text-primary: #cccccc;
  --text-secondary: #969696;
  --text-muted: #6a6a6a;
  --text-bright: #e8e8e8;

  --border-color: #404040;
  --border-active: #007acc;

  --accent: #007acc;
  --accent-hover: #1e8ad6;
  --accent-text: #ffffff;

  --success: #4ec9b0;
  --warning: #ce9178;
  --error: #f44747;
  --info: #569cd6;

  --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-mono: 'Cascadia Code', 'Fira Code', 'Consolas', 'Courier New', monospace;
  --font-size: 13px;

  --titlebar-height: 38px;
  --statusbar-height: 24px;
  --panel-header-height: 30px;
  --tab-height: 35px;

  --left-sidebar-width: 250px;
  --right-sidebar-width: 350px;
  --terminal-height: 220px;
  --resize-handle-size: 4px;

  --scrollbar-bg: transparent;
  --scrollbar-thumb: #424242;
  --scrollbar-thumb-hover: #555555;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size);
  color: var(--text-primary);
  background: var(--bg-primary);
  overflow: hidden;
  height: 100vh;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--scrollbar-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--scrollbar-thumb);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--scrollbar-thumb-hover);
}

kbd {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 3px;
  padding: 1px 6px;
  font-family: var(--font-mono);
  font-size: 11px;
}
