.action-bar-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 0.375rem;
  border-radius: 999px;
  background-color: var(--pico-primary);
  color: var(--pico-primary-inverse);
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
}

.action-bar-panel {
  transition: max-height 0.3s ease, opacity 0.3s ease;
  max-height: 1000px;
  opacity: 1;
  overflow: hidden;
  margin-top: var(--pico-spacing);
}

.action-bar-panel[data-state="closed"] {
  max-height: 0;
  opacity: 0;
  pointer-events: none;
}

.page-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--pico-spacing);
}

.page-header h1,
.page-header h2 {
  margin-bottom: 0;
}

.page-header-actions {
  display: flex;
  flex-direction: row;
  gap: calc(var(--pico-spacing) * 0.5);
  align-items: center;
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--pico-spacing) * 0.375);
  line-height: 1;
}
