.centre {
  text-align: center;
}

/* Basic styling for buttons */
.button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.button:hover {
  background-color: #0056b3; /* Darker blue on hover */
}

.toggles {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 auto;
  flex-direction: row;
}