.category-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 18px;
  align-items: start;
}
.category-form { position: sticky; top: 14px; }
.category-form small { color: var(--muted); line-height: 1.5; }
.category-actions { display: flex; gap: 6px; flex-wrap: wrap; }
.category-actions button { padding: 6px 10px; }
.category-disabled { opacity: .58; }
.delete-category { color: #a22b2b; background: #ffe9e7; }
@media (max-width: 900px) {
  .category-layout { grid-template-columns: 1fr; }
  .category-form { position: static; }
}
