<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
  background-color: #000000;
  font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", Helvetica, Arial, "sans-serif" !important;
}

header {
  text-align: center;
  color: #ffffff;
}

.messages {
  background-color: steelblue;
  border-radius: 5px;
  padding: 1em;
  height: 50vh;
  overflow: auto;
  scroll-behavior: smooth;

}

.message {
  color: white;
  padding: 0.1em;
  font-size: 1.3em;

}

.date,
.author {
  font-weight: bold;
}

form {
  display: flex;
  margin-top: 1em;
  justify-content: space-between;
}

input,
button {
  padding: 0.5em;
}

input {
  margin-right: 10px;
}

#author {
  width: 20%;
}

#content {
  width: 60%;
}

button[type="submit"] {
  width: 20%;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button[type="submit"]:hover {
  background-color: #0056b3;
}

/* Messages d'erreur - petite amÃŠlioration */
.error-message {
  color: red;
  font-size: 0.8rem;
  margin-top: 5px;
  min-height: 20px;
}</pre></body></html>