.container { line-height: 1.6; }

body {
  font-family: sans-serif;
  padding: 2rem;
  margin: 0 auto;
  max-width: 1000px;
}

textarea {
  width: 100%;
  height: 60vh;
  font-family: monospace;
  font-size: 1rem;
  padding: 1rem;
  box-sizing: border-box;
}

.admin-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
}

button, .logout-btn {
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
}

button {
  background-color: #4CAF50;
  color: white;
}

.logout-btn {
  background-color: #f44336;
  color: white;
}
