/* Polls Page Styles */

label {
    margin:0 !important;
}

input {
    margin: 1rem !important;
}
.polls-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.poll-section {
  background: #f8f4f1;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 4px 12px rgba(42, 10, 94, 0.1);
}

.section-header {
  text-align: center;
  margin-bottom: 20px;
}

.section-header h3 {
  color: #2a0a5e;
  margin: 0 0 10px 0;
  font-size: 24px;
}

.section-header p {
  color: #666;
  margin: 0;
  font-size: 16px;
}

.poll-form {
  max-width: 600px;
  margin: 0 auto;
}

.poll-options {
  margin-bottom: 20px;
}

.option {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding: 10px;
  background: white;
  border-radius: 8px;
  border: 2px solid #e0e0e0;
  transition: border-color 0.3s ease;
}

.option:hover {
  border-color: #fac4a7;
}

.option input[type="radio"] {
  margin-right: 15px;
  transform: scale(1.2);
}

.option label {
  flex: 1;
  cursor: pointer;
  font-size: 16px;
  color: #333;
}

.poll-instruction {
  color: #666;
  font-size: 14px;
  margin-bottom: 15px;
  font-style: italic;
}

.poll-submit {
  display: block;
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, #2a0a5e, #e87341);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.poll-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(42, 10, 94, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .polls-container {
    padding: 10px;
  }

  .poll-section {
    padding: 15px;
  }

  .section-header h3 {
    font-size: 20px;
  }

  .option {
    padding: 8px;
  }

  .option label {
    font-size: 14px;
  }
}