body, html {
   
   
  
    background: #03050c;
    font-family: 'Arial', sans-serif;
  }
  
  .chatbot-container {

    width: 400px;
    background: #080d18;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
  }
  
  .chatbot-header {
    background: #0e1523;
    color: #ffffff;
    padding: 16px;
    font-size: 18px;
    position: relative;
  }
  
  .status-dot {
    height: 12px;
    width: 12px;
    background-color: #4CAF50;
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
  }
  
  .chatbot-body {
    padding: 20px;
  }
  
  .chatbot-message {
    background: #141b29;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
  }
  
  .line {
    background-color: #4CAF50;
    width: 4px;
    position: absolute;
    left: 0;
    bottom: 100%; /* Start hidden beneath the element */
    top: 0;
    transition: bottom 0.5s ease;
  }
  
  #final-message .line {
    background-color: #FFC107; /* Different color for the final line */
  }
  
  .skeleton-text {
    height: 20px;
    margin: 10px 0;
    background: rgba(255,255,255,0.2);
    border-radius: 4px;
  }
  
  .completed-text {
    display: none;
    color: #fff;
    background: #0a121c;
    padding: 10px;
    border-radius: 5px;
  }
  
  /* Animation for skeleton loading */
  @keyframes loading {
    0% {
      background-color: rgba(255,255,255,0.1);
    }
    50% {
      background-color: rgba(255,255,255,0.3);
    }
    100% {
      background-color: rgba(255,255,255,0.1);
    }
  }
  
  .skeleton-text {
    animation: loading 1.5s infinite;
  }
  .chatbot-footer {
    padding: 10px;
    background: #121a2a;
  }
  
  #chat-input {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    color: #fff;
    background: #142335;
    outline: none;
  }  