    .modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      opacity: 0;
      transition: opacity 0.3s ease; 
    }

    .modal-content {
    background-color: #fff;
	max-width: 650px;
	min-width: 350px;
	height:450px;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    opacity: 0;
    transform: scale(0.7);
    transition: opacity 0.3s ease, transform 0.3s ease; 
    }

    .modal-overlay.show, .modal-content.show {
      opacity: 1;
      transform: scale(1);
    }

    .modal-close {
      width: 30px;
      height: 24px;
      text-align: center;
      position: absolute;
      top: 2px;
      right: 2px;
      cursor: pointer;
      background: red;
      border-radius: 0 8px;
      color: #fff;
	  font-size:22px;
    }
#installBtn {
  padding: 5px 8px;
  background: #0078d7;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  margin-left:10px;
}


#installModal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
}


#installModal .modal-content1 {
  background: #fff;
  border-radius: 10px;
  max-width: 90%;
  margin: 10px auto;
  padding: 20px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  animation: fadeIn 0.3s;
}
#installModal .modal-content1 p{text-align: left;}


@keyframes fadeIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

#installModal h2 {
  margin-bottom: 10px;
  font-size: 20px;
}

#installModal p {
  font-size: 15px;
  margin: 8px 0;
}

#installModal img {
  max-width: 80%;
  margin: 10px auto;
  display: block;
  border-radius: 8px;
}

#installModal .close-btn1 {
  margin-top: 15px;
  padding: 8px 16px;
  background: #0078d7;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}