/* Styling for "Abandoned Form Popup" */

 /* 🔲 Overlay blur background */
 #exit-intent-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(5px);
    background: rgba(0, 0, 0, 0.4);
    z-index: 999998;
  }
  
  /* 📦 Popup centered */
  #exit-intent-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    max-width: 90%;
    width: 400px;
    border-radius: 10px;
  }
  
  #exit-intent-popup.show,
  #exit-intent-overlay.show {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  
  .popup-inner {
    text-align: center;
    margin-top: 15px;
  }
  
  button#exit-popup-yes , button#exit-popup-no, button#submit-abandoned-phone, button#exit-popup-back{
    padding: 8px 16px;
    border-radius: 5px;
  }

  #exit-popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    font-weight: bold;
    color: #ffffff;
    cursor: pointer;
    z-index: 1001;
    background: #047cba;
    border: none;
    line-height: 0.7;
    padding: 8px 9px;
    border-radius: 50px;
  }
  
   
  #phone-input-wrap{
   display:none; 
   margin-top:10px;
  }

  .popup-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}



   