/* style.css */

body {
  font-family: Arial, sans-serif;
  max-width: 600px;
  margin: 40px auto;
  padding: 0 15px;
  background-color: #f5f8fa;
  color: #333;
}

h1 {
  text-align: center;
  color: #1da1f2;
}

textarea#pioutInput {
  width: 100%;
  font-size: 1rem;
  padding: 10px;
  resize: vertical;
  border: 1px solid #ccd6dd;
  border-radius: 6px;
  box-sizing: border-box;
}

button#pioutButton {
  background-color: #1da1f2;
  color: white;
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 20px;
  cursor: pointer;
  margin-top: 10px;
  display: block;
  width: 100%;
  max-width: 150px;
  transition: background-color 0.3s ease;
}

button#pioutButton:hover {
  background-color: #0d95e8;
}

#pioutList {
  margin-top: 30px;
}

.piout {
  background-color: white;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 10px;
  box-shadow: 0 1px 3px rgb(0 0 0 / 0.1);
  font-size: 1rem;
  white-space: pre-wrap;
}
