/* Dashboard Scroll Fix */
html, body {
  overflow: visible !important;
  height: auto !important;
}

body.dashboard-page {
  overflow-y: auto !important;
  overflow-x: auto !important;
}

/* Ensure scrollbar is visible */
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

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

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