/* Collapsible */
.collapsible {
  transition: max-height 0.4s ease, opacity 0.3s ease;
  overflow: hidden;
}

.collapsed {
  max-height: 0;
  opacity: 0;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

/* Finished indicator */
option.finished {
  color: #888;
  font-style: italic;
}

/* Sticky standings */
.sticky-stand {
  position: sticky;
  top: 0;
  z-index: 100;
}

.sticky-stand .card {
  border: 2px solid #4a6cf7;
}