#header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  padding: 0 22px;
}

.header-heading {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-search {
  display: none;
}

.icon-button {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: transparent;
  color: #3b4048;
  cursor: pointer;
  transition:
    background 150ms ease,
    color 150ms ease;
}

.icon-button:hover {
  background: var(--surface-active);
  color: var(--text);
}

.notification-button {
  position: relative;
  border: 0;
  background: transparent;
}

.notification-indicator {
  position: absolute;
  top: 7px;
  right: 7px;
  width: 7px;
  height: 7px;
  border: 2px solid var(--surface);
  border-radius: 50%;
  background: var(--primary);
}

.header-profile {
  display: flex;
  align-items: center;
  gap: 9px;
  border-radius: 8px;
  background: transparent;
  padding: 4px 6px;
  cursor: pointer;
}

.header-profile:hover {
  background: var(--surface-active);
}

.header-profile-avatar {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #171717;
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
}

.header-profile-text {
  display: flex;
  min-width: 108px;
  flex-direction: column;
  align-items: flex-start;
}

.header-profile-text strong {
  font-size: 11px;
  font-weight: 700;
}

.header-profile-text small {
  margin-top: 2px;
  color: var(--text-muted);
  font-size: 9px;
}

.header-profile-chevron {
  width: 13px;
  height: 13px;
  color: var(--text-muted);
}

.mobile-navigation-button {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 38px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 13px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 600;
  transition:
    background 150ms ease,
    border-color 150ms ease,
    color 150ms ease;
}

.button svg {
  width: 15px;
  height: 15px;
}

.button-primary {
  background: var(--primary);
  color: #ffffff;
}

.button-primary:hover {
  background: var(--primary-hover);
}

.button-secondary {
  border-color: var(--border);
  background: var(--surface);
  color: var(--text);
}

.button-secondary:hover {
  border-color: var(--border-strong);
  background: var(--surface-muted);
}

.resource-search {
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
}

.resource-search svg {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  color: var(--text-muted);
}

.resource-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 11px;
}

.empty-page {
  display: grid;
  min-height: calc(100vh - 160px);
  place-items: center;
  align-content: center;
  text-align: center;
}

.empty-page-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--primary-subtle);
  color: var(--primary);
}

.empty-page h1 {
  margin-top: 18px;
}

.empty-page p {
  margin-top: 8px;
  color: var(--text-muted);
}
