/* 
   Modern Design Refactor - Tailwind CSS is used for styling.
   This file is kept for any custom overrides that are difficult to achieve with Tailwind utilities alone.
   Legacy styles have been removed to prevent conflicts.
*/

/* Example of a custom scrollbar if desired */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #047857;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #065f46;
}