/*  
body.loading {
    // background-image: url('logo.png'); 
    background-repeat: no-repeat;
    background-position: center;
    background-color: #fff; 
  }

 
#loading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.welcome-text {
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 10px;
}

 

#loading-container img {
    width: 80%;  
    height: auto;
  }

  @media (min-width: 768px) {  
    #loading-container img {
      width: 50%;
    }
  } */

  #loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }
  
  .loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    animation: spin 2s linear infinite;
  }
  
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }