/* Emception IDE — Catppuccin Mocha theme variables */
:root {
  --bg-base: #1e1e2e;
  --bg-surface: #181825;
  --bg-overlay: #11111b;
  --border: #313244;
  --text: #cdd6f4;
  --text-dim: #a6adc8;
  --text-dimmer: #585b70;
  --accent: #89b4fa;
  --green: #a6e3a1;
  --red: #f38ba8;
  --yellow: #f9e2af;
}

body {
  background: var(--bg-base);
  color: var(--text);
  overflow: hidden;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

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

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

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