/* popup-modal styling */
.popup-modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4); /* Black with opacity */
  }
  
  .popup-modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 300px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  .popup-modal-icon {
    font-size: 36px;
    color: orange;
  }
  
  .popup-modal-button {
    margin: 10px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  #cancelButton {
    background-color: #ccc;
  }
  
  #confirmButton {
    background-color: #f00;
    color: #fff;
  }
  
  .alart-sub-text{
    font-size: 12px;
  }






  /* =========================================== */

  .popup-modal-alt {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex; 
    justify-content: center; /* Centers horizontally */
    align-items: center; /* Centers vertically */
    z-index: 9999; /* Ensure it's above other elements */
  }
  
  .popup-modal-content-alt {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    width: 300px; 
    max-width: 100%; 
    box-sizing: border-box; 
    margin-left: 40%;
    margin-top: 15%;
  }

  .popup-modal-content-exl {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    width: 300px; 
    max-width: 100%; 
    box-sizing: border-box; 
    /* margin-left: 40%;
    margin-top: 15%; */
  }
  
  .popup-modal-icon-alt {
    font-size: 2rem;
  }
  
  .popup-modal-button-alt {
    padding: 10px 20px;
    margin-top: 10px;
    background-color: #ff8c00;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 4px;
  }
  
  .popup-modal-button-alt:hover {
    background-color: #985b10;
  }
  