* {
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f5f7fa;
  margin: 0;
  padding: 2rem;
  display: flex;
  justify-content: center;
  min-height: 100vh;
  color: #222;
}

.container {
  max-width: 700px;
  width: 100%;
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgb(0 0 0 / 0.1);
}

h1 {
  margin-bottom: 0.25rem;
  color: #0056b3;
}

p {
  margin-top: 0;
  margin-bottom: 1.5rem;
  color: #555;
}

textarea {
  width: 100%;
  min-height: 140px;
  padding: 1rem;
  font-size: 1rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  resize: vertical;
  transition: border-color 0.3s;
}

textarea:focus {
  outline: none;
  border-color: #0056b3;
  box-shadow: 0 0 6px #0056b3aa;
}

.buttons {
  margin: 1.25rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

button {
  background: #0056b3;
  border: none;
  color: white;
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
  border-radius: 5px;
  cursor: pointer;
  flex-grow: 1;
  min-width: 120px;
  transition: background-color 0.3s;
}

button:hover {
  background: #003f82;
}

.stats {
  color: #444;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

h2 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: #0056b3;
}
