
  #edza-openModalBtn {
      width: 100%;
      display: block; /* Ensures the button behaves as a block element to fill the space */
    }
  /* Base reset for the widget */
  #edza-widget-container {
    font-family: Arial, sans-serif;
    color: #333;
  }
  #edza-widget-container *, #edza-widget-container *::before, #edza-widget-container *::after {
    box-sizing: border-box;
  }

  /* Modal Background Overlay */
  .edza-modal {
    display: none; 
    position: fixed; 
    z-index: 9999;
    left: 0; top: 0; width: 100%; height: 100%; 
    background-color: rgba(0,0,0,0.6); 
  }

  /* Modal Content Box */
  .edza-modal-content {
    background-color: #ffffff;
    margin: 5vh auto; 
    padding: 25px 35px;
    border-radius: 8px;
    width: 90%;
    max-width: 550px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    max-height: 90vh;
    overflow-y: auto;
  }

  .edza-title {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 24px;
    color: #222;
  }

  /* Close Button */
  .edza-close {
    color: #999;
    float: right;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
  }
  .edza-close:hover, .edza-close:focus { 
    color: #333; 
    text-decoration: none;
  }

  /* Form Styling */
  .edza-form {
    display: block;
  }
  .edza-form-group { 
    margin-bottom: 15px; 
    text-align: left;
  }
  
  /* THIS IS THE FIX FOR THE CRAMPED INPUTS */
  .edza-form-group label { 
    display: block; 
    margin-bottom: 6px; 
    font-weight: 600; 
    font-size: 14px;
  }
  .edza-form-group input[type="text"], 
  .edza-form-group input[type="email"], 
  .edza-form-group input[type="tel"], 
  .edza-form-group select {
    width: 100%; 
    padding: 10px; 
    border: 1px solid #ccc; 
    border-radius: 5px;
    font-size: 14px;
    background-color: #fff;
    color: #333;
  }
  .edza-form-group input:focus, .edza-form-group select:focus {
    border-color: #0056b3;
    outline: none;
  }

  /* Instructions Box */
  .edza-instructions {
    background-color: #f4f8fa; 
    padding: 15px; 
    border-left: 4px solid #0056b3; 
    margin-bottom: 20px; 
    font-size: 13px;
    line-height: 1.5;
    border-radius: 0 4px 4px 0;
  }
  .edza-instructions p { margin: 0 0 8px 0; }
  .edza-instructions p:last-child { margin-bottom: 0; }

  /* Buttons */
  .edza-btn {
    background-color: #28a745; 
    color: #fff; 
    border: none; 
    padding: 12px 24px;
    border-radius: 5px; 
    cursor: pointer; 
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.2s ease;
  }
  .edza-btn:hover { background-color: #218838; }
  .edza-submit-btn {
    width: 100%;
    margin-top: 10px;
  }

