.button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius-full);
  border: none;
  padding: 0;
  margin: 0;
  width: 50px;
  height: 50px;
  cursor: pointer;
  color: var(--color-text-primary-inverted);
  border: 1px solid var(--border-color-alpha-white-20);
  transition: opacity 0.3s ease;
}

.button:hover {
  opacity: 0.85;
}

.inverted {
  background-color: var(--color-bg-fill-alpha-white-20);
}

.iconWrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.icon {
  width: 100%;
  height: 100%;
}
