/* Ajustes mínimos sobre Bootstrap */
.page-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.catalog-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--bs-border-color);
}

.catalog-item:last-child {
  border-bottom: 0;
}

.catalog-item-main {
  min-width: 0;
}

.catalog-item-actions {
  display: flex;
  gap: 0.4rem;
  flex-shrink: 0;
}

@media (max-width: 576px) {
  .catalog-item {
    flex-direction: column;
    align-items: stretch;
  }

  .catalog-item-actions {
    justify-content: flex-end;
  }
}
