 /* lodpop container */
    .lodpop  {
      display: none; /* Hidden by default */
      position: fixed; /* Stay in place */
      z-index: 999; /* Sit on top */
      left: 0;
      top: 0;
      width: 100%; /* Full width */
      height: 100%; /* Full height */
      background-color: rgba(0, 0, 0, 0.8); /* Black with opacity */
    }

    /* lodpop content box */
    .lodpop-content {
      background-color: #fff;
      margin: 2% auto; /* 15% from the top and centered */
      padding: 5px;
      border-radius: 5px;
      width: 90%; /* Responsive width */
      max-width: 500px; /* Max width for larger screens */
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    /* Close button */
    .close-btn {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    margin-top: -25px;
    margin-right: -25px;
    background: #FFF;
    border: 1px solid blue;
    width: 25px;
    height: 25px;
    text-align: center;
    line-height: 21px;
    }

    .close-btn:hover,
    .close-btn:focus {
      color: #000;
      text-decoration: none;
      cursor: pointer;
    }
    
    /* Responsive media query */
    @media (max-width: 800px) {
      .lodpop-content {
        width: 85%; /* Adjust content width for small devices */
      }
	  .lodpop-content { margin: 8% auto;}
    }