/* frontend/style.css */
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f9f9f9;
  padding: 30px;
}

.container {
  max-width: 700px;
  margin: auto;
  background-color: #fff;
  padding: 25px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

h1 {
  color: #333;
  text-align: center;
  margin-bottom: 25px;
}

textarea {
  width: 100%;
  height: 140px;
  padding: 15px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  resize: vertical;
  margin-bottom: 15px;
}

button {
  background-color: #4CAF50;
  color: white;
  padding: 12px 20px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #45a049;
}

#status {
  margin-top: 15px;
  color: #888;
  font-style: italic;
}

.hidden {
  display: none;
}

#responseArea {
  margin-top: 20px;
  background-color: #f0f0f0;
  padding: 15px;
  border-radius: 8px;
  font-size: 16px;
  white-space: pre-wrap;
  min-height: 80px;
}
