/* Minimal custom CSS - Most styling done with Tailwind */

/* Smooth transitions for progress bars */
#short-sentence-bar,
#medium-sentence-bar,
#long-sentence-bar {
  transition: width 0.5s ease;
}

/* Custom scrollbar for textarea */
textarea::-webkit-scrollbar {
  width: 8px;
}

textarea::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

textarea::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

textarea::-webkit-scrollbar-thumb:hover {
  background: #555;
}
