/*
This file was generated with Miyagi AI (Prod).
*/
/* Custom Scrollbar Styles */

.prompt-text_wrapper::-webkit-scrollbar {
  width: 12px; /* Adjusted width of the scrollbar */
}


.prompt-text_wrapper::-webkit-scrollbar-track {
  background: transparent; /* Make the track transparent by default */
  border-radius: 10px; /* round the track corners */
  padding: 2px;
}

.prompt-text_wrapper::-webkit-scrollbar-thumb {
  background: transparent; /* Make the thumb transparent by default */
  border-radius: 10px; /* round the scroll thumb corners */
  width: 3px;
}


.prompt-text_wrapper:hover::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2); /* White color with 20% opacity for the thumb on hover */
}

.prompt-text_wrapper:hover::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3); /* White color with 30% opacity for the thumb when hovered */
}
  