.action-categories .action-abort {
    width: 100%;
    margin-top: 10px;
}
.categories__container {
  min-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.categories__box {
  background-color: white;
  border-radius: 16px;
  border: 1px solid #e9edf5;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.categories__header {
  padding: 10px;
  border-bottom: 2px solid #e9edf5;
  font-size: 20px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.categories__list {
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
}
.categories__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e9edf5;
  padding: 10px;
  transition: all 0.3s;
}
.categories__item:hover{
    background-color: #f6f7f8;
}
.categories__delete {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  background: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
  border-color: #fecaca;
  color: #ef4444;
}
.categories__delete:hover {
  background: #f9fafb;
}
.action-categories p {
  margin-bottom: 0;
}
.categories__button {
}
