.atlbr-favorites-page__actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin: 24px 0 32px;
  flex-wrap: wrap;
}

.atlbr-favorites-button {
  border: 0;
  border-radius: 999px;
  padding: 12px 28px;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.atlbr-favorites-button--primary {
  background: #2f2e35;
  color: #fff;
}

.atlbr-favorites-button--primary:hover,
.atlbr-favorites-button--primary:focus-visible {
  background: #1d1c21;
  transform: translateY(-1px);
}

.atlbr-favorites-button--ghost {
  border: 1px solid rgba(47, 46, 53, 0.35);
  background: transparent;
  color: #2f2e35;
}

.atlbr-favorites-button--ghost:hover,
.atlbr-favorites-button--ghost:focus-visible {
  background: rgba(47, 46, 53, 0.08);
}

.atlbr-favorites-button.is-loading {
  opacity: 0.6;
  cursor: wait;
}

.atlbr-favorites-button.is-success {
  background: #2e7d32;
  color: #fff;
}

.atlbr-favorites-button.is-error {
  background: #aa1d1d;
  color: #fff;
}

@media (max-width: 768px) {
  .atlbr-favorites-page__actions {
    justify-content: flex-end;
  }
}
