.container {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}

.button {
  padding: 0.5rem 1.2rem;
  background-color: var(--color-base-white);
  color: var(--color-neutral-white);
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.button:hover { 
  opacity: 0.85;
}

.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}