body {
  background-color: #12161d;
  color: #ffffff;
  font-family: Arial, sans-serif;
}

.container {
  max-width: 500px;
  margin: 0 auto;
  padding: 20px;
}

h1 {
  text-align: center;
  color: #ffffff;
  margin-bottom: 20px;
}

P {
  text-align: center;
  line-height: 24px;
  color: #7591ad;
}

textarea {
  width: 100%;
  height: 200px;
  resize: none;
  background-color: #1f2933;
  color: #ffffff;
  border: none;
  padding: 10px;
  font-size: 16px;
  margin-bottom: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.code-box {
  background-color: #212f3d;
  padding: 10px;
  margin-top: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
}

#outputCode {
  color: #ffffff;
  font-family: monospace;
  white-space: pre-wrap;
  word-break: break-all;
  margin: 0;
  font-size: 18px; /* Adjust the font size as needed */
}

#copyButton {
  position: absolute;
  top: 5px;
  right: 5px;
  background-color: #4e6174;
  color: white;
  border: none;
  padding: 5px 10px;
  text-align: center;
  text-decoration: none;
  font-size: 14px;
  cursor: pointer;
  border-radius: 3px;
}

#copyButton:hover {
  background-color: #4c6279;
  transition: background-color 0.5s ease-in-out 0.2s; /* Adjust transition timing and delay */
}

#copyButton.copied {
  background-color: #4b7299;
}

#clearButtonContainer {
  text-align: center;
  margin: 10px auto;
}

#clearButton {
  background-color: #4e6174;
  color: white;
  border: none;
  padding: 5px 10px;
  text-align: center;
  text-decoration: none;
  font-size: 14px;
  cursor: pointer;
  border-radius: 3px;
}
