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

/* Smooth transitions for score bars */
#flesch-bar,
#simple-words-bar,
#complex-words-bar {
  transition: width 0.5s ease, background-color 0.3s 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;
}
