body {
  font-family: Arial, sans-serif;
  background: #f6f9fc;
  margin: 0;
  padding: 30px;
}

.container {
  max-width: 960px;
  margin: auto;
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0,0,0,0.05);
}

h1 {
  text-align: center;
}

textarea {
  width: 100%;
  height: 200px;
  margin-top: 15px;
  font-size: 16px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  resize: vertical;
}

.options {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 20px 0;
  justify-content: space-between;
}

.options label {
  flex: 1;
  min-width: 200px;
  font-size: 14px;
}

button {
  padding: 10px 20px;
  background: #0078ff;
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin: 10px 5px;
}

button:hover {
  background: #005fcc;
}

table {
  width: 100%;
  margin-top: 20px;
  border-collapse: collapse;
}

th, td {
  border-bottom: 1px solid #ddd;
  padding: 10px;
  text-align: left;
}

th {
  background-color: #f1f1f1;
}

.bar {
  background: #4caf50;
  height: 14px;
  border-radius: 5px;
}
