.toolbar {
  flex-wrap: wrap;
}

.date-filter {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--muted);
  white-space: nowrap;
}

.date-filter input {
  width: 138px;
}

#frameworkFilter {
  max-width: 280px;
}

.multi-filter {
  position: relative;
  min-width: 155px;
}

.multi-filter > summary {
  list-style: none;
  cursor: pointer;
  border: 1px solid #ccd4dc;
  border-radius: 7px;
  background: #fff;
  padding: 9px 30px 9px 11px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.multi-filter > summary::-webkit-details-marker {
  display: none;
}

.multi-filter > summary::after {
  content: "⌄";
  position: absolute;
  right: 11px;
  top: 8px;
  color: var(--muted);
}

.multi-filter[open] > summary {
  border-color: var(--blue);
}

.multi-panel {
  position: absolute;
  z-index: 50;
  top: calc(100% + 4px);
  left: 0;
  width: max-content;
  min-width: 100%;
  max-width: 430px;
  max-height: 320px;
  overflow: auto;
  padding: 8px;
  border: 1px solid #cbd4dc;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.multi-panel label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 7px;
  cursor: pointer;
  white-space: nowrap;
}

.multi-panel label:hover {
  background: var(--blue2);
}

.multi-panel input[type="checkbox"] {
  margin-top: 2px;
}

.multi-search {
  position: sticky;
  top: 0;
  z-index: 1;
  width: 100%;
  margin-bottom: 5px;
}

.wide-filter {
  min-width: 180px;
}

.button-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.table-scroll-top {
  height: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  border-bottom: 1px solid var(--line);
  background: #fbfcfd;
}

.table-scroll-top > div {
  height: 1px;
}

.copy-cell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.copy-btn {
  flex: 0 0 auto;
  padding: 3px 6px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--muted);
  opacity: .45;
}

.copy-cell:hover .copy-btn,
.copy-btn:focus-visible {
  opacity: 1;
  border-color: #cbd4dc;
  background: #fff;
}

th.sortable {
  cursor: pointer;
  user-select: none;
}

th.sortable:hover {
  background: #e1ebf2;
}

.sort-arrow {
  color: var(--blue);
  font-size: 13px;
  white-space: nowrap;
}
