/* buttons.css: Styles for buttons */

/* Default button styling */
.button {
  background-color: blue;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

/* Hover state for button */
.button:hover {
  background-color: darkblue;
}
