/* AIChatUI.css */
.chat-ui-container {
    width: 100%;
    max-width: 768px;
    margin: 0 auto;
    padding: 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #fff;
  }
  
  .chat-messages {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
    max-height: 500px;
    overflow-y: auto;
  }

  .chat-inner-title{
    text-align: center;
  }
  