*{
    box-sizing: border-box;
}

body{
    margin: 0;
}

.chat--bot{
    position: fixed;
    top: 90%;
    left: 10px;
}

.chat--bot > button{
    border-radius: 50%;
    padding: 15px 20px;
    font-size: 25px;
}

.chat-box-modal{
    margin-left: -30%;
    margin-top: 5%;
}

.chat-form{
    padding: 10px;
    min-height: 400px;
    overflow-y: auto;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
    border-radius: 25px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #f1f1f1; 
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #888; 
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #555; 
  }

.chat-bot-content{
    display: flex;
    gap: 10px;
}

.chat-bot-icon , .chat-user-icon{
    background-color: #5a3e37;
    color: #fff;
    height: 40px;
    width: 40px;
    text-align: center;
    padding: 8px 10px;
    border-radius: 50%;
}

.chat-bot-message , .chat-user-message{
    max-width: 55%;
    background-color: #5a3e37;
    color: #fff;
    border-radius: 10px;
    padding: 8px;
}

.chat-user-content{
    display: flex;
    justify-content: right;
    gap: 10px;
}

.chat-user-icon , .chat-user-message{
    background-color: #808080;
}

/* suggestion */
div.scrollmenu {
    overflow: auto;
    white-space: nowrap;
}
  
div.scrollmenu p {
    display: inline-block;
    border: 1px solid black;
    border-radius: 10px;
    margin-right: 5px;
    text-align: center;
    padding: 14px;
    text-decoration: none;
}

div.scrollmenu::-webkit-scrollbar {
    height: 5px;
    /* display: none; */
  }

 