.poll-container {
  max-width: 600px;
  margin: 20px auto;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.poll-container h3 {
  font-size: 24px;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #eee;
}

.poll-container p {
  padding: 15px 0;
  color: #666;
  line-height: 1.5;
}

.poll-form .form-group {
  margin-bottom: 20px;
  width: 100%;
}

.poll-form .form-check {
  margin: 10px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.poll-form .form-check-input {
  margin: 0;
}

.poll-form .form-check-label {
  margin: 0;
}

.poll-form textarea.form-control {
  width: 100%;
  min-height: 100px;
  resize: vertical;
}

.poll-form input[type="email"].form-control {
  width: 100%;
  padding: 8px;
}

.poll-success {
  text-align: center;
  padding: 20px;
  background-color: #d4edda;
  border-radius: 5px;
  color: #155724;
}

.poll-form button[type="submit"] {
  background-color: #007bff;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.2s;
}

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