body {
  font-family: "Arial", sans-serif;
  background-color: #f0f8ff;
  color: #333;
  padding: 20px;
}

.container {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: auto;
}

h1,
h2 {
  color: #333;
}

#inputText {
  width: 100%;
  height: 120px;
  margin-top: 20px;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.button-container {
  display: flex;
  justify-content: space-between;
}

#submitBtn,
#clearBtn,
#copyBtn,
#copyBtnX10 {
  width: 48%;
  padding: 10px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  margin-top: 20px;
  cursor: pointer;
  transition: background-color 0.5s; /* Animation */
}

#copyBtn,
#copyBtnX10 {
  width: 100%;
}

#submitBtn:active,
#clearBtn:active,
#copyBtn:active,
#copyBtnX10:active {
  background-color: #0056b3; /* Change color when the button is clicked */
}

#outputText {
  margin-top: 20px;
  padding: 20px;
  border-radius: 5px;
  border: 1px solid #ccc;
  background-color: #f8f9fa;
  word-wrap: break-word;
}

@media only screen and (max-width: 600px) {
  #inputText {
    height: 200px;
  }
}
