/* styles.css */

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
  }
  
  .container {
    width: 75%;
    text-align: center;
  }
  
  #response {
    white-space: pre-wrap;
  }
  
  .user-message {
    color: black;
    font-weight: bold;
  }
  
  .ai-message {
    color: rgb(0, 0, 0);
    transition: opacity 3s ease-in-out;
    opacity: 1;
  }
  
  .dots-container {
    display: flex;
    justify-content: space-between;
    margin: 0 auto; /* Center the dots container */
    width: 80px; /* Adjust size as needed */
  }
  
  .dot {
    width: 20px; /* Adjust size as needed */
    height: 20px; /* Adjust size as needed */
    background-color: #3498db; /* Change color as needed */
    border-radius: 50%;
    animation: pulse 1.5s infinite;
  }
  
  .dot:nth-child(1) {
    animation-delay: 0.2s;
  }
  
  .dot:nth-child(2) {
    animation-delay: 0.4s;
  }
  
  .dot:nth-child(3) {
    animation-delay: 0.6s;
  }
  
  @keyframes pulse {
    0%, 100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.25);
    }
  }
  