﻿
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

.chatbot-toggler {
    position: fixed;
    bottom: 20px;
    right: 20px;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #c6e1ff;
    border: none;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}



body.show .chatbot-toggler {
    transform: rotate(90deg);
}

.chatbot-toggler span {
    position: absolute;
    display: flex;
}

.chatbot-toggler span:first-child img {
    width: 30px;
}

.chatbot-toggler span:last-child img {
    width: 15px;
}

.chatbot-toggler span:last-child,
body.show .chatbot-toggler span:first-child  {
    opacity: 0;
}

body.show .chatbot-toggler span:last-child {
    opacity: 1;
}

.chatbot 
{
    
    
    position: fixed;
    bottom: 80px;
    
    right: 20px;
    width: 100%;
    max-width: 380px;
    height: 70vh;
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    display: none;
    flex-direction: column;
    
    font-family: Verdana;
    font-size: 14px;
    color: #333;
    
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}


.chatbot.show {
    display: flex;
}

.chatbot .headerchat {
    background-color: #529cf1;
    color: white;
    padding: 15px;
}

.chatbox {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
    margin:20px;
}

.chatbox li {
    list-style: none;
    margin-bottom: 15px;
}

.chatbox .incoming,
.chatbox .outgoing {
    display: flex;
    align-items: flex-start;
}

.chatbox .incoming img,
.chatbox .outgoing img {
    width: 30px;
    margin-right: 10px;
}

.chatbox .incoming p
{
 color:Black;
 font-size:15px;  
 font-family:Verdana; 
}


.chatbox .incoming p,
.chatbox .outgoing p {
    background-color: #f1f1f1;
    border-radius: 10px;
    padding: 10px;
    max-width: 70%;
	
}

.chatbox .outgoing {
    justify-content: flex-end;
}

.chatbox .outgoing p {
    background-color: #33a6fd;
    color: white;
	font-family:Verdana; 
}

.chat-input {
    padding: 10px;
    border-top: 1px solid #ccc;
    display: flex;
    background-color: #f9f9f9;
}

.chat-input textarea {
    flex: 1;
    resize: none;
    border: none;
    padding: 10px;
    border-radius: 5px;
    outline: none;
}

.chat-input button {
    border: none;
    background: none;
    margin-left: 10px;
}
.optionbutton {
    display: inline-block;
    padding: 3px 3px;
    background-color: #5AA1F3;
    /* Bootstrap blue */
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    margin: 2px;
    font-family: Verdana;
}


a.optionbutton {
  font-family: Verdana;

}
.optionbutton:hover {
    background-color: #AECCEF;
    color: Black;
}
        
