/* Dashboard List Page - Scroll Fix */
/* Ensure body and containers are scrollable */

html, body {
  height: auto;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
}

body {
  margin: 0;
  padding: 0;
}

#app {
  height: auto;
  min-height: 100vh;
  overflow: visible;
}

/* Dashboard List Page specific */
.dashboard-list-page {
  height: auto;
  overflow: visible;
}
