html, body {
  height: 100%;
  width: 100%;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background-color: #1e1e1e;
  color: #d4d4d4;
  font-family: 'JetBrains Mono', monospace;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #1e1e1e;
}

::-webkit-scrollbar-thumb {
  background: #424242;
}

::-webkit-scrollbar-thumb:hover {
  background: #4f4f4f;
}

.tab-active {
  background-color: #1e1e1e;
  border-top: 1px solid #007acc;
  color: white;
}

.tab-inactive {
  background-color: #2d2d2d;
  color: #969696;
}

.sidebar-icon:hover .tooltip {
  visibility: visible;
  opacity: 1;
}

.cursor-blink {
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}
