/* app/assets/stylesheets/application.tailwind.css */

/* 1. Import the main Tailwind engine */
@import "tailwindcss";

/* 2. Load the Typography plugin explicitly */
@plugin "@tailwindcss/typography";

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #1a1a1a;
}
::-webkit-scrollbar-thumb {
  background: #444;
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: #555;
}
