/* === Section Title Styling === */
.webform-section-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
  background-color: #234990;
  padding: 0.75rem 1rem;
  border-left: 8px solid #ffd600;
  border-radius: 6px;
  margin-top: 2rem;
  margin-bottom: 1.2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* === Section Block Wrapper === */
.webform-section-wrapper {
  background: #f9fafe;
  border: 1px solid #e1e7f2;
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(35,73,144,0.06);
}

/* === Form Labels === */
label {
  font-weight: 600;
  color: #234990;
  font-size: 1rem;
}

/* === Form Fields === */
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  border: 1px solid #cfd6e6;
  border-radius: 5px;
  padding: 0.6rem 0.8rem;
  font-size: 1rem;
  background-color: #ffffff;
  color: #234990;
  transition: border-color 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #234990;
  box-shadow: 0 0 0 2px rgba(35, 73, 144, 0.15);
  outline: none;
}

/* === Submit Button === */
input[type="submit"],
button[type="submit"] {
  background-color: #234990;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 6px;
  transition: background-color 0.25s;
}

input[type="submit"]:hover,
button[type="submit"]:hover {
  background-color: #ffd600;
  color: #234990;
}

/* === Hide unwanted elements === */
#edit-hidden-container-01,
.edit-civicrm-2-activity-1-activity-details-format-guidelines,
#edit-civicrm-2-activity-1-activity-details-format-guidelines {
  display: none !important;
}

/* === Optional: Add a background to entire form === */
.webform-submission-form {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(35, 73, 144, 0.06);
}

/* Default styles for the rating buttons */
.webform-options-display-buttons-label {
  padding: 10px 15px;
  border-radius: 5px;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: inline-block;
  text-align: center;
}
