.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    backdrop-filter: blur(10px); /* Whitish blur */
    background: rgba(0, 0, 0, 0.3); /* Light white overlay */
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .loader-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .bus-icon-img {
    width: 120px;
    height: auto;
  }
  
  .loader-text {
    margin-top: 12px;
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    text-align: center;
    color: white;
  }
  
  /* Mobile responsive */
  @media (max-width: 600px) {
    .bus-icon-img {
      width: 90px;
    }
  
    .loader-text {
      font-size: 0.9rem;
      color: white;
    }
  }
  