.admin-topbar {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  height: 100%;
  width: 100%;
  padding: 0 var(--space-6);
}
.admin-topbar__title {
  flex: 1;
  min-width: 0;
  margin: 0;
  font-size: var(--text-lg);
  font-weight: 700;
  line-height: 1;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.admin-topbar__actions {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

@media (max-width: 768px) {
  .admin-topbar { padding: 0 var(--space-4); }
}
