/* reCAPTCHA Modal Styles */
.recaptcha-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    justify-content: center;
    align-items: center;
  }
  
  .recaptcha-container {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    max-width: 400px;
    width: 90%;
  }
  
  .recaptcha-container h3 {
    margin-top: 0;
    color: #333;
  }
  
  .recaptcha-actions {
    margin-top: 15px;
  }
  
  .recaptcha-actions button {
    padding: 8px 15px;
    margin: 0 5px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  .recaptcha-cancel {
    background: #f0f0f0;
  }
  
  .recaptcha-submit {
    background: #4CAF50;
    color: white;
  }