/*
  AlexandraBot — Frontend-only static build
  Notes:
  - This file contains only tiny global tweaks.
  - The UI is primarily Tailwind utility classes in HTML.
*/

:root {
  color-scheme: light dark;
}

/* Subtle scrollbars (best-effort, browser-dependent) */
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(0,0,0,0.18) transparent;
}

.dark * {
  scrollbar-color: rgba(255,255,255,0.22) transparent;
}

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

*::-webkit-scrollbar-track {
  background: transparent;
}

*::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.18);
  border-radius: 999px;
}

.dark *::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.22);
}

/* Avoid textarea resize handle clashing with the “glass” aesthetic */
textarea {
  resize: none;
}
