/* Start custom CSS for section, class: .elementor-element-199b5c6 *//* Style the select dropdown */
#preferred-doctor {
  width: 100%; /* Make the select field take up the full width */
  padding: 10px;
  font-size: 14px;
  font-family: Arial, sans-serif;
  background: url('data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 10 6%22%3E%3Cpolygon points=%220,0 10,0 5,5%22 fill=%22%23bbb%22/%3E%3C/svg%3E') no-repeat right 10px center;
  background-size: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  color: #333;
}

#preferred-doctor option {
  padding: 10px;
  font-size: 14px;
  color: #333;
}

/* Optional: Style the dropdown when focused */
#preferred-doctor:focus {
  border-color: #dd1f26; /* Your brand color */
  outline: none;
}

/* Optional: Change dropdown's arrow size */
#preferred-doctor::-ms-expand {
  display: none; /* For IE */
}

/* Style the select dropdown for Consultation Type */
#consultation-type {
  width: 100%; /* Make the select field take up the full width */
  padding: 10px;
  font-size: 14px;
  font-family: Arial, sans-serif;
  background: url('data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 10 6%22%3E%3Cpolygon points=%220,0 10,0 5,5%22 fill=%22%23bbb%22/%3E%3C/svg%3E') no-repeat right 10px center;
  background-size: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  color: #333;
}

#consultation-type option {
  padding: 10px;
  font-size: 14px;
  color: #333;
}

/* Optional: Style the dropdown when focused */
#consultation-type:focus {
  border-color: #dd1f26; /* Your brand color */
  outline: none;
}

/* Optional: Change dropdown's arrow size */
#consultation-type::-ms-expand {
  display: none; /* For IE */
}


/* Style the select dropdown for Preferred Time Slot */
#preferred-time {
  width: 100%; /* Make the select field take up the full width */
  padding: 10px;
  font-size: 14px;
  font-family: Arial, sans-serif;
  background: url('data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 10 6%22%3E%3Cpolygon points=%220,0 10,0 5,5%22 fill=%22%23bbb%22/%3E%3C/svg%3E') no-repeat right 10px center;
  background-size: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  color: #333;
}

#preferred-time option {
  padding: 10px;
  font-size: 14px;
  color: #333;
}

/* Optional: Style the dropdown when focused */
#preferred-time:focus {
  border-color: #dd1f26; /* Your brand color */
  outline: none;
}

/* Optional: Change dropdown's arrow size */
#preferred-time::-ms-expand {
  display: none; /* For IE */
}


/* Style the row containing both File Upload and Notes */
.form-row {
  display: flex;
  justify-content: space-between;
  gap: 20px; /* Space between the two fields */
  flex-wrap: wrap; /* Ensures responsive behavior */
  margin-bottom: 20px; /* Space between form rows */
}

/* Style the columns inside the row */
.form-col {
  flex: 1; /* Distribute space evenly between the fields */
  min-width: 45%; /* Ensure both fields don't take up too much space on smaller screens */
}

/* Adjust File Upload field to make it look good */
#referral-file {
  width: 100%; /* Make the file input take up the full width */
  padding: 10px;
  font-size: 14px;
  font-family: Arial, sans-serif;
  border: 1px solid #ddd;
  border-radius: 5px;
  color: #333;
}

/* Adjust Notes/Textarea field */
#additional-notes {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  font-family: Arial, sans-serif;
  border: 1px solid #ddd;
  border-radius: 5px;
  color: #333;
  min-height: 100px; /* Minimum height for the notes field */
}

/* Optional: Style the form fields when focused */
#referral-file:focus,
#additional-notes:focus {
  border-color: #dd1f26; /* Your brand color */
  outline: none;
}

/* Optional: Adjust for mobile screens */
@media (max-width: 768px) {
  .form-col {
    min-width: 100%; /* Stack the fields vertically on smaller screens */
  }
}

/* Style radio buttons row */
.form-radio-row {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

/* Ensure label and radios have spacing */
.form-radio-row label {
  margin-right: 20px;
  white-space: nowrap;
  font-weight: bold;
}

/* Style the radio options container */
.form-radio-options {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Style individual radio options */
.form-radio-options label {
  font-weight: normal;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Optional: Improve visibility of selected radio */
input[type="radio"]:checked + span {
  color: #dd1f26; /* AXONMED brand color */
  font-weight: bold;
}

.gdpr-submit-row {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 30px;
}

.gdpr-col {
  flex: 0 0 30%;
}

.submit-col {
  flex: 0 0 70%;
}

.default-btn {
  width: 40%; /* Or try 300px for fixed width */
  padding: 12px 20px;
  font-size: 16px;
  text-align: center;
}/* End custom CSS */