.switchButton {
  display: inline-block;
  padding: 10px 20px;
  /* margin: 10px; */
  font-size: 16px;
  font-weight: bold;
  color: white;
  background-color: #ad9071;
  border: none;
  border-radius: 5px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.switchButton:hover {
  background-color: #90785f;
}
