/* Custom styles for the Grok & Regexp Debugger UI.
   Tailwind utility classes are loaded via the CDN script in index.html;
   this file only holds the handful of rules Tailwind can't express. */

.custom-scrollbar::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
.custom-scrollbar::-webkit-scrollbar-track {
  background: rgba(15, 23, 42, 0.6);
}
.custom-scrollbar::-webkit-scrollbar-thumb {
  background: rgba(51, 65, 85, 0.8);
  border-radius: 3px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: rgba(71, 85, 105, 1);
}

textarea {
  tab-size: 2;
}

.results-container {
  transition: max-height 0.3s ease;
}
