*{
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    font-size: 16px;
  }
  
  body {
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
  }

  .toast2 {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: red;
    color: white;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
  
  .container {
    max-width: 480px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  }
    
  .container2 {
    max-width: 480px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  }
  
  h1 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
  }
  
  .radio-choice {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
  }
  
  input[type="radio"] {
    margin-right: 5px;
  }
  
  .checkboxes {
    margin-bottom: 40px;
  }
  
  .brand-options input[type="checkbox"] {
    margin-right: 5px;
  }
  
  .additional-text {
    margin-bottom: 20px;
  }
  
  textarea {
    width: 100%;
    resize: none;
    font-size: 16px
  }

  #bw #color{
    font-size: 16px;
  }
  
  .bw-color {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 14px;
  }


.toast {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #333;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.toast.show {
  opacity: 1;
}
  
  button {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    outline: none;
  }
  
  button:hover {
    background-color: #0056b3;
  }
  
  button:active {
    background-color: #004085;
  }
  
  #clear-data {
    margin-left: 10px;
  }
  

  input[type="checkbox"] {
    transform: scale(1.5);
    margin-right: 5px;
    margin-bottom: 15px;
  }


  /* @keyframes shake {
    0%, 100% {
      transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
      transform: translateX(-10px);
    }
    20%, 40%, 60%, 80% {
      transform: translateX(10px);
    }
  }
  
  .shake {
    animation: shake 0.6s;
  } */
  

  /* @keyframes shake {
    0%, 100% {
      transform: translateY(0);
    }
    10%, 30%{
      transform: translateY(-10px);
    }
    20%, 40%{
      transform: translateY(10px);
    }
  }
  
  .shake {
    animation: shake 0.25s;
  } */


  #overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(128, 128, 128, 0.5);
    display: none;
    z-index: 1000;
  }