/* static/style.css */

/* Smooth scrolling for the chat window */
#chat-window {
  scroll-behavior: smooth;
}

/* Hide the default scrollbar on macOS while keeping it usable */
#chat-window::-webkit-scrollbar {
  width: 6px;
}
#chat-window::-webkit-scrollbar-thumb {
  background-color: rgba(100, 100, 100, 0.4);
  border-radius: 3px;
}

/* Auto‑resize textarea – hide the native resize handle */
textarea {
  overflow-y: hidden;
}

/* Dark‑mode transition (nice fade) */
html {
  transition: background-color 0.2s, color 0.2s;
}
