/* Keep every sidebar shortcut accessible when the screen height is limited. */
.sidebar nav {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  align-content: start;
  padding-right: 2px;
}

.header-actions {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-with-icon {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  object-fit: cover;
  border-radius: 6px;
  background: #fff;
}

.nav-icon[src$="eip.png"] {
  object-fit: contain;
  padding: 1px;
}
