  /* Styles for loading animation */
  .loading-screen {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 1001;
  }

  .loading-content {
    position: relative;
    margin: 15% auto;
    padding: 20px;
    width: 80%;
    max-width: 600px;
    background-color: white;
    border-radius: 10px;
    text-align: center;
    font-family: 'Courier New'; 
  }

.load-button{

  position:relative ;
  top: 5px;
  right: 5px;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.9); /* Semi-transparent white */
  border: none;
  border-radius: 50px;
  transition: all 0.3s ease; /* Add transition for smooth animation */
  
  }