:root {
  --sidebar-w: 250px;
  --topbar-h: 56px;
}

h1 {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  text-wrap: balance;
}

h2 {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.2;
  text-wrap: balance;
  margin-bottom: 0.5rem;
}

h3 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  text-wrap: balance;
  margin-bottom: 0.5rem;
}

#menu {
  position: fixed;
  width: 250px;
  height: 100svh;
  overflow: auto;
  padding: 1rem;
  background-color: var(--bs-tertiary-bg);
  border-right: 1px solid var(--bs-border-color);
}

#menu .nav-pills {
  --bs-nav-pills-link-active-bg: var(--bs-border-color);
  --bs-nav-pills-link-active-color: black;
  --bs-nav-link-padding-y: 0.375rem;
}

#menu .nav-link:hover:not(.active) {
  background-color: var(--bs-secondary-bg);
  color: var(--bs-emphasis-color) !important;
}

#menu .nav-link:focus {
  color: var(--bs-emphasis-color) !important;
}

#content-with-sidebar {
  margin-left: 250px;
  padding: 1rem;
}

.project-selector-button {
  color: black;
}

#brand {
  margin: 0;
  align-self: center;
  text-decoration: none;
  color: black;
}

.topbar {
  position: fixed;
  height: var(--topbar-h);
  background-color: var(--bs-tertiary-bg);
  border-bottom: 1px solid var(--bs-border-color);
  width: 100%;
}

.co-has-tooltip {
  border-bottom: 1px dotted currentColor;
  cursor: help;
}

.co-actions-td {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
}

.co-actions-div {
  display: flex;
  align-items: center;
  gap: 1px;
}

.co-actions-div a {
  border: none;
  padding: 2px 1px;
  color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, 1));
  text-decoration: none;
}

.co-actions-div button {
  border: none;
  padding: 2px 1px;
  display: block;
  background: transparent;
}

.co-actions-div svg {
  display: block;
}

.sortable thead th:not(.no-sort) {
  cursor: pointer;
}

.sortable thead th:not(.no-sort)[aria-sort=descending]::after {
  content: "▾";
  margin-left: 0.2rem;
}

.sortable thead th:not(.no-sort)[aria-sort=ascending]::after {
  content: "▴";
  margin-left: 0.2rem;
}