.elementor-3875 .elementor-element.elementor-element-fac7874{--display:flex;--margin-top:-50px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;overflow:visible;}@media(max-width:767px){.elementor-3875 .elementor-element.elementor-element-fac7874{--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}}/* Start custom CSS for container, class: .elementor-element-fac7874 *//** Form Container and Header Section **/

/* Outer wrapper for the Suggest a Purchase form */
.ssldl-form-section {
  max-width: 700px;              /* Keeps form narrow for readability */
  margin: 0 auto;                /* Centers the form horizontally */
  padding: 2rem 1rem;            /* Outer spacing */
}

/* Main form heading */
.ssldl-form-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #003366;                /* SSLDL brand navy */
}

/* Supporting paragraph text under the heading */
.ssldl-form-section p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: #444;                   /* Neutral gray for readability */
}

/** Form Body Styling (.ssldl-card-form) **/

/* Form container box */
.ssldl-card-form {
  background-color: #f9f9f9;     /* Light background for contrast */
  padding: 2rem;
  border-radius: 8px;            /* Soft corners */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05); /* Gentle elevation */
}

/* All form labels */
.ssldl-card-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: #222;
}

/* Input fields: text, email, tel, date, dropdown, textarea */
.ssldl-card-form input[type="text"],
.ssldl-card-form input[type="email"],
.ssldl-card-form input[type="tel"],
.ssldl-card-form input[type="date"],
.ssldl-card-form select,
.ssldl-card-form textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
}

/* Textarea-specific rules */
.ssldl-card-form textarea {
  resize: vertical;
  min-height: 120px;
}

/** Button Styling + Failover Fix **/

/* Submit button styling (standard state) */
.ssldl-card-form .ssldl-btn {
  background-color: #003366;     /* Brand navy */
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

/* Submit button hover effect */
.ssldl-card-form .ssldl-btn:hover {
  background-color: #00509e;
}

/* Explicit override to retain button shape after submission */
.ssldl-card-form input[type="submit"] {
  border-radius: 4px !important;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
}

/* Style for submit button when disabled (after clicking) */
.ssldl-card-form input[type="submit"]:disabled {
  border-radius: 4px !important;
  background-color: #ccc !important;
  color: #333 !important;
  cursor: not-allowed;
}

/** Info Card Block Above the Form (e.g., OverDrive note) **/

/* Informational box above the form */
.ssldl-info-card {
  background-color: #f1f5f9;       /* Light blue-gray background */
  border-left: 5px solid #3e5063;  /* Navy accent stripe */
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
  border-radius: 4px;
  font-size: 1rem;
  color: #222;
}

/* Icon + Text wrapper (new block for inline icon support) */
.ssldl-info-icon-text {
  display: flex;
  align-items: flex-start;
  gap: 1rem;                       /* Space between icon and text */
}

/* Icon appearance inside info card */
.ssldl-info-icon-text i {
  font-size: 1.5rem;
  color: #f5b800;                 /* Golden icon color */
  flex-shrink: 0;
  margin-top: 0.3rem;             /* Vertically align icon */
}

/* Info card spacing */
.ssldl-info-card p {
  margin-bottom: 1rem;
}

/* Link styling inside the info box */
.ssldl-info-card a {
  color: #003366;
  text-decoration: underline;
}

/** Mobile Adjustment **/

@media screen and (max-width: 600px) {
  /* Slightly reduce form padding on small screens */
  .ssldl-card-form {
    padding: 1.5rem;
  }
}/* End custom CSS */