/* Styles for the pwa modal */
    .modal {
      display:block;
      position: fixed; /* Position it on top of the page content */
      z-index: 2; /* Set a higher z-index to make it appear on top of other elements */
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: auto; /* Enable scrolling if the content exceeds the viewport */
      background-color: rgba(0, 0, 0, 0.8); /* Black background with transparency */
    }
    
    .hidden {
      display: none; /* Hide the modal by default */
    }

    .modal-content {
      background-color: #fefefe;
      margin: 15% auto; /* Center the modal vertically and horizontally */
      padding: 40px;
      border-radius: 20px;
      width: 80%;
    }
    
    .modal-content div img {
        float:left;
        margin:10px;
        border-radius:10% 10% 10% 10%;
    }

    .close {
      color: #aaa;
      float: right;
      font-size: 28px;
      font-weight: bold;
    }

    .close:hover,
    .close:focus {
      color: black;
      text-decoration: none;
      cursor: pointer;
    }
    
    .btn-container {
        text-align: center;
        margin-top: 20px;
    }
    
    .btn2 {
        margin: 3px 10px;
        padding: 10px 20px;
        background-color: #4CAF50;
        color: white;
        border: 1px solid #2a2a2a;
        border-radius: 4px;
        cursor: pointer;
    }
    
    .btn2.cancel {
        background-color: #ffffff;
        color: black;
    }
    
    .cancel:hover {
        background-color: #8e8e8e;
        color: #fff;
    }
    
    .installBtn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #4CAF50;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.installBtn:hover {
  background-color: #0f481c;
}

.installBtn:focus {
  outline: none;
}

.installBtn:active {
  transform: translateY(1px);
}
    
    .pwa {
        color:black;
        margin-bottom:20px;
    }