/* Start custom CSS for html, class: .elementor-element-8428254 */body {
  background: #f5f5f5;
  font-family: 'Inter', sans-serif;
  padding: 40px 20px;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.poll-container {
  max-width: 720px;
  background: #fff;
  margin: 0 auto;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  font-size: 16px;
  width: 100%;
}

h2 {
  color: #1d3557;
  text-align: center;
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: 600;
}

label {
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  display: block;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  margin-top: 8px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  box-sizing: border-box;
  transition: border 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #1d3557;
  outline: none;
}

textarea {
  resize: vertical;
  height: 150px;
}

.options {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.option-btn {
  flex: 1;
  background: #f1f1f1;
  padding: 14px 20px;
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
  user-select: none;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  margin: 8px 0;
  font-size: 16px;
}

.option-btn:hover,
.option-btn.selected {
  background-color: #e0ecf9;
  border-color: #1d3557;
}

button {
  background-color: #1d3557;
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  width: 100%;
  cursor: pointer;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #457b9d;
}

@media (max-width: 768px) {
  .poll-container {
    padding: 30px;
  }

  .option-btn {
    font-size: 14px;
    padding: 12px;
  }

  h2 {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  body {
    padding: 20px;
  }

  .poll-container {
    padding: 20px;
  }

  h2 {
    font-size: 18px;
  }

  input,
  select,
  textarea {
    font-size: 14px;
  }

  button {
    font-size: 14px;
    padding: 12px;
  }
}/* End custom CSS */