/* This CSS will hide the body content by default */
body {
    display: none;
    /* or 'visibility: hidden;' based on your preference */
  }
  
  .chat-box {
    overflow-y: auto;
  }
  
  .message {
    padding: 10px;
    margin: 5px;
    border-radius: 5px;
    background: #f0f0f0;
  }
  
  
  
  .bot-message {
    background: #e7f5ff;
  }
  
  .user-message {
    background: #d1e7fd;
    text-align: right;
  }
  
  .typing-animation {
    display: inline-flex;
    align-items: center;
  }
  
  .typing-dot {
    width: 8px;
    height: 8px;
    background-color: #a7a7a7;
    border-radius: 50%;
    margin-right: 4px;
    animation: typing 1s infinite;
  }
  
  @keyframes typing {
    0% {
      opacity: 0.3;
      transform: scale(1);
    }
  
    50% {
      opacity: 1;
      transform: scale(1.05);
    }
  
    100% {
      opacity: 0.3;
      transform: scale(1);
    }
  }