/* Hide Google reCAPTCHA badge */
.grecaptcha-badge { 
  visibility: hidden; 
}

/* Wrapper for reCAPTCHA message to ensure proper positioning */
.mssb-rc-wrapper {
  display: block;
  width: 100%;
  clear: both;
  margin-top: 10px;
  margin-bottom: 10px;
  text-align: center;
  
  /* Ensure it appears at the bottom in flex layouts */
  order: 9999;
  align-self: stretch;
  
  /* Ensure it spans full width in grid layouts */
  grid-column: 1 / -1;
}

/* Spambuster reCAPTCHA Message Styling */
.mssb-rc-text {
  /* Typography */
  font-size: 12px;
  line-height: 1.4;
  color: #666;
  
  /* Spacing - moved to wrapper */
  /* margin-top: 10px;
  margin-bottom: 10px; */
}

/* Style for links within the reCAPTCHA message */
.mssb-rc-text a {
  color: #2271b1;
  text-decoration: none;
}

.mssb-rc-text a:hover {
  text-decoration: underline;
}

/* Fix for forms with flexbox layout */
form[style*="display: flex"],
form[style*="display:flex"] {
  flex-wrap: wrap;
}

/* Fix for forms with specific layouts */
form.contact-form .mssb-rc-wrapper,
form[action*="/contact"] .mssb-rc-wrapper,
.contact-form__form .mssb-rc-wrapper {
  margin-top: 15px;
}

/* Fix for popups/modal forms */
[role="dialog"] form .mssb-rc-wrapper,
[aria-modal="true"] form .mssb-rc-wrapper {
  position: relative;
  bottom: 0;
}

/* Media query for mobile responsiveness */
@media (max-width: 767px) {
  .mssb-rc-wrapper {
    margin-top: 15px;
  }
}

/* 
  Additional optional styling for specific form types 
  Uncomment and customize as needed
*/

/* 
.contact-form .mssb-rc-text {
  text-align: left;
  padding: 5px;
}

.newsletter-form .mssb-rc-text {
  text-align: center;
  font-style: italic;
}

#customer_login .mssb-rc-text {
  border-top: 1px solid #eee;
  padding-top: 10px;
}
*/