.file-tree::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

.file-tree::-webkit-scrollbar-track {
  background: transparent;
}

.file-tree::-webkit-scrollbar-thumb {
  background-color: var(--border-strong);
  border-radius: var(--radius-sm);
  border: 2px solid var(--bg-surface);
}

.file-tree {
  scrollbar-width: thin;
  scrollbar-color: var(--border-strong) transparent;
}

.run-output::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

.run-output::-webkit-scrollbar-track {
  background: transparent;
}

.run-output::-webkit-scrollbar-thumb {
  background-color: var(--border-strong);
  border-radius: var(--radius-sm);
  border: 2px solid var(--bg-canvas);
}

.run-output {
  scrollbar-width: thin;
  scrollbar-color: var(--border-strong) transparent;
}
