/* Set font and font size for buttons */
button {
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: bold;
  }
  
  /* Set button color and border */
  button {
    background-color: #4CAF50; /* Green */
    border: none;
    color: white;
    padding: 12px 24px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    border-radius: 4px;
  }
  
  /* Add hover effect to buttons */
  button:hover {
    opacity: 0.8;
  }
  
  /* Add active effect to buttons */
  button:active {
    background-color: #3e8e41;
    transform: translateY(1px);
  }
  