body {
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #141e30, #243b55);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.container {
  text-align: center;
  width: 400px;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

textarea {
  width: 100%;
  height: 100px;
  border: none;
  border-radius: 8px;
  padding: 10px;
  font-size: 16px;
  resize: none;
  outline: none;
}

button {
  margin-top: 10px;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  background-color: #00bcd4;
  color: white;
  font-size: 18px;
  cursor: pointer;
}

button:disabled {
  background-color: #007b83;
  cursor: not-allowed;
}

.output {
  margin-top: 20px;
}

img {
  width: 100%;
  border-radius: 8px;
  display: none;
}
