body {
    background-color: mintcream;
    font-family: 'Arial', cursive, sans-serif;
    font-size: 18px;
  }
  
  
h1 {
  
    color: #00a3cc;
    padding: 10px 20px;
}

  form {
    margin: 20px;
  }
  
  label {
    display: block;
    margin-bottom: 10px;
  }
  
  input[type="number"] {
    padding: 5px;
    font-size: 16px;
  }
  
  button {
    padding: 10px 20px;
    font-size: 20px;
    background-color: #00a3cc;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 10px;
  }
  
  #clear-all-btn {
    background-color: #ed4c4c; /* Change to your desired color */
    color: #FFFFFF; /* Change to your desired text color */
  }
  

  button:last-child {
    margin-right: 0;
  }
  
  #list-container, #average-container {
    margin-top: 20px;
  }

  /* ...existing CSS rules... */

select {
    padding: 5px;
    font-size: 20px;
    width: 200px; /* Adjust the width as needed */
  }
  
  /* ...existing CSS rules... */