/* Styles for the overlay background */
#overlay {     
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* #565654 /* Grayish background with some transparency */
}

/* Styles for the popup image */
#popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 80%;
    max-height: 80%;
}


#splash-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    max-height: 100%;
}

#splash-image {
  max-width: 100%;
  max-height: 100%;
  border-radius: 20px; /* Adjust as needed */
}

.close-btn {
    /*
      position:fixed;
  top: 5px;
  right: 10px;
  cursor: pointer;
  font-size: 24px;
  color: #fff;

  */
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 16px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5); /* Background color for the close button */
    border-radius: 35%; /* Make it a circle */
    padding: 10px; /* Adjust as needed for padding inside the circle */
    text-align: center;
}

