/* Enable horizontal scrolling for Redmine Dashboard task board */
.rdb-taskboard,
.rdb-board,
.rdb-columns {
  overflow-x: auto !important;
  overflow-y: hidden;
  white-space: nowrap;
}

/* Make each column inline so it scrolls horizontally */
.rdb-column {
  display: inline-block;
  vertical-align: top;
  min-width: 260px;
}

/* Prevent body from breaking layout */
#content {
  overflow-x: auto;
}
