/* Dropdown styles / Nice Select overrides
   - Uses existing vendor file: nice-select.min.css
   - Adds max-height + scrolling to long lists (pagination)
*/

@import url('./nice-select.min.css');

/* Keep dropdown lists from expanding the whole page */
.nice-select .list {
  max-height: 280px;
  overflow-y: auto;
}

/* Better behavior inside flex layouts (pagination area) */
.pagination-select.nice-select {
  float: none;
  width: auto;
  min-width: 140px;
}

.pagination-select.nice-select .list {
  max-height: 320px;
}
