codescraftman / ethanicbot / static / css / chatbot.css
chatbot.css
Raw
#ethanicbot-chatbox {
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 9999;
    font-family: Arial;
  }
  
  #ethanicbot-toggle {
    background: #4b6cb7;
    color: white;
    padding: 10px 15px;
    border-radius: 50%;
    cursor: pointer;
    text-align: center;
  }
  
  #ethanicbot-window {
    display: none;
    width: 300px;
    height: 400px;
    background: white;
    border: 1px solid #ccc;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  
  #ethanicbot-header {
    background: #4b6cb7;
    color: white;
    padding: 10px;
    font-weight: bold;
    text-align: center;
  }
  
  #ethanicbot-messages {
    flex-grow: 1;
    padding: 10px;
    overflow-y: auto;
  }
  
  #ethanicbot-messages .user {
    text-align: right;
    color: #4b6cb7;
    margin-bottom: 5px;
  }
  
  #ethanicbot-messages .bot {
    text-align: left;
    color: #333;
    margin-bottom: 5px;
  }
  
  #ethanicbot-typing {
    padding: 5px;
    font-style: italic;
    text-align: center;
    color: gray;
  }
  
  #ethanicbot-form {
    display: flex;