/* buttons.css */
/* Buttons */

button {
  background-color: #e4edff;
  color: black;

  border-radius: 10px;
  border: none;

  padding: 10px 20px;
  margin: 10px;
  
  cursor: pointer;
  font-size: 1em;

  align-items: center;

}

button:hover {
  background-color: #b2c9f6;
}

.chosen_button {
  background-color: white;
}

.button-container {
    margin: 10px;
    display: flex;  
    justify-content: center;  /* Centers the buttons horizontally */
    align-items: center;  /* Ensures buttons are vertically aligned */
    gap: 10px;  /* Space between buttons */
}

.button-container button {
    display: flex;  
    align-items: center;  
    justify-content: center;  
    padding: 10px 20px;
    font-size: 16px;
}