body {
  margin: 0;
  padding: 0;
  font-family: "Georgia", "Times New Roman", serif;
  background: #fdf6e3;
  color: #4b3b2a;
  line-height: 1.7;
  background-image: linear-gradient(to bottom, #fdf6e3 0%, #f6ecd7 100%);
}

/* Container for overall layout */
.container {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem;
  background: rgba(255, 255, 240, 0.95);
  border: 2px solid #d8c9a6;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
}

/* Header */
header h1 {
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  color: #5a4736;
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px #eee;
}

/* Form styling */
.poem-form {
  display: flex;
  gap: 1rem;
  margin-bottom: 0; /* No margin so hint is close below */
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
}

.poem-form input.inspiration {
  flex: 1;
  padding: 0.7rem;
  border: 1px solid #c8bfae;
  border-radius: 4px;
  font-size: 1rem;
  background-color: #fff9e9;
  min-width: 0;
}

.poem-form input.submit-button {
  padding: 0.7rem 1.2rem;
  font-size: 1rem;
  background-color: #c3a776;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.poem-form input.submit-button:hover {
  background-color: #a88b5b;
}

/* Hint styling */
.hint {
  width: 100%; /* Full width below inputs */
  margin: 0;
  padding-top: 4px; /* Small spacing above hint text */
  font-size: 12px;
  line-height: 1.5;
  opacity: 0.6;
  color: #4b3b2a;
  font-family: Georgia, serif;
}

/* Headings and poems */
h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  color: #5e4839;
  margin-top: 2rem;
}

em {
  font-style: italic;
  text-decoration: underline;
}

blockquote {
  margin: 1rem 0;
  padding-left: 1rem;
  border-left: 3px solid #c7b99e;
  font-style: italic;
  color: #5a4736;
}

p {
  margin-bottom: 1rem;
}

#les-fleurs-du-mal.generated {
  margin-top: 2rem; /* or any spacing you want */
}

/* Footer */
footer {
  margin-top: 3rem;
  font-size: 0.9rem;
  text-align: center;
  color: #6c5a4d;
}

footer a {
  color: #8b6d4b;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .poem-form {
    flex-direction: column;
  }

  .poem-form input.submit-button {
    width: 100%;
  }
}
