/* lists.css */

/* containers for picktables */
.picklist {
	display: flex;
  flex-direction: row;
  align-items: flex-start;
  /* justify-content: space-between; */
  justify-content: center;
}

.picklistitems {
	max-width: calc(100% - 1.5em);
}

.picklistjump {
	position: sticky;
	right: 0;
	top: 2em;
	text-align: center;
}

.dlgheaderextra ~ .dlgbody > .picklist > .picklistjump {
  top: 5em;
}

.picklistjump a {
  padding-left: 0.5em;
  padding-right: 0.5em;
  text-decoration: none;
}

/* table list for picking */
.picktable,
.infotable {
    margin: 0 auto;
}

#admindash .infotable {
  margin-left: 5em;
  margin-top: 1em;
}

.picktable {
    border-collapse: collapse;
}

.picktable th,
.picktable td,
.infotable th,
.infotable td {
  padding-left: 4px;
  padding-right: 4px;
}

.picktable th,
.infotable th {
    text-align: left;
    font-weight: 500;
    vertical-align: bottom;
    border-bottom: 1px solid darkblue;
}

.pickRow {
    cursor: pointer;
    border-bottom: 1px solid #EEEEEE;
    scroll-margin-top: 5em;
}

.pickRow:hover {
    color: white;
    background-color: #003471;
}

.pickCell {
    padding: 0.25em;
}

.infotable .num,
.infotable .pct,
.infotable .tot {
  text-align: right;
}

.infotable .pct {
  font-style: italic;
  font-size: smaller;
}

.infotable .tot {
  font-style: italic;
  font-weight: 600;
}

.infotable .info {
  color: darkgrey;
  font-size: smaller;
  font-style: italic;
}

.listcontrols {
  text-align: center;
  padding-bottom: 1em;
}

.listcontrols label {
  padding-right: 0.5em;
}

.dlgbody .listcontrols label {
  display: inline;
}

.listcontrols label input[type=checkbox] {
  margin-right: 0.25em;
}

.idnum {
  margin-left: 5px;
  color: darkgrey;
  font-size: smaller
}

  
  