.custom-surcharge-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.surcharge-button {
  padding: 10px 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #f9f9f9;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.2s ease-in-out;
  font-size: 14px;
}

.surcharge-button:hover {
  background-color: #f1f1f1;
}

.surcharge-button.active {
  background-color: #e0ffe0;
  border-color: #3cba54;
}