body.webform-share-page-body {
  background: transparent !important;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  padding: 0 10px;
}

.webform-submission-form .form-item {
  margin-bottom: 15px;
}

.webform-submission-form label {
  display: block;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
  font-size: 14px;
}

.webform-submission-form input[type="text"],
.webform-submission-form input[type="email"],
.webform-submission-form input[type="tel"],
.webform-submission-form input[type="date"],
.webform-submission-form select {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
  background: #fff;
}

.webform-submission-form input:focus,
.webform-submission-form select:focus {
  outline: none;
  border-color: #f7931e;
  box-shadow: 0 0 0 3px rgba(247, 147, 30, 0.2);
}

.webform-submission-form input::placeholder {
  color: #999;
}

.webform-submission-form .form-actions {
  margin-top: 20px;
}

.webform-submission-form .webform-button--submit {
  width: 100%;
  padding: 14px 20px;
  background: linear-gradient(135deg, #1a5c38 0%, #0d4428 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.webform-submission-form .webform-button--submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 92, 56, 0.4);
}

.webform-submission-form .webform-button--submit:active {
  transform: translateY(0);
}

/* Hide the reCAPTCHA badge - it's still active just hidden */
.grecaptcha-badge {
  visibility: hidden !important;
}

/* Style the select dropdown arrow */
.webform-submission-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
}