.loading-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  .logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .loading-char {
    font-size: 4rem;
    font-weight: bold;
    color: white;
    animation: bounce 1s infinite;
  }
  
  .loading-symbol img {
    width: 1rem;
    height: 1rem;
    margin-left: 0.5rem;
    animation: bounce 1s infinite;
  }
  
  .loading-text {
    font-size: 1.2rem;
    color: #d3d3d3;
    margin-top: 1rem;
  }
  
  @keyframes bounce {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-20px);
    }
  }

  .scroll-container {
   max-height: 100%;
    overflow-y: auto;
    display: flex;
    flex-direction: column-reverse;
}