
.content textarea {
  width: 100%;
  height: 25vh;
  resize: none;
  border: 1px solid #ccc;
  padding: 10px;
  box-sizing: border-box;
  font-family: 'Roboto Mono', monospace;
  font-size: 14px;
  line-height: 1.6;
  color: #000;
  outline: none;
}

.content textarea#generatedTextArea {
  height: 39vh;
}

button.submit-prompt {
  margin-bottom: 25px;
  padding: 10px;
  border-radius: 10px;
  font-size: 15px;
  background: #10d596;
  color: #ffffff;
  font-weight: bold;
}

.touch-up-btn {
  background: #00555d !important;
}

.loading {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #3498db;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}