
/* Chat Widget CSS */
.chatbot-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-family: 'Lato', sans-serif;
    z-index: 9999;
}


.chatbot-circle {
    width: 45px; /* Adjust size as needed */
    height: 45px; /* Must be equal to width for a circle */
    background-color: #0077cc; /* Your desired solid color */
    border-radius: 50%;
    display: flex; /* Use flexbox for easy centering of the icon */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.chatbot-circle i {
    color: white; /* Color of your icon */
    font-size: 30px; /* Adjust icon size as needed */
    padding-right:5px;
    padding-bottom:4px;
}


.chatbot-box {
    width: 300px;
    height: 400px;
    background-color: white;
    border-radius: 8px 8px 0 0;
    /* box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3); */
    display: none;
    flex-direction: column;
    overflow: hidden;
    position: absolute;
    bottom: 60px;
    right: 0;
    display: none;
    flex-direction: column;
}

.chatbot-header {
    background-color: #0077cc;
    color: white;
    padding: 3px;
    padding-right:5px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-close {
    cursor: pointer;
    font-size: 18px;
}

.chatbot-messages {
    flex: 1;
    padding: 10px;
    overflow-y: auto;
    background-color: #f9f9f9;
}

.chatbot-input {
    display: flex;
    border-top: 1px solid #ddd;
}

.chatbot-input input {
    flex: 1;
    padding: 10px;
    border: none;
    outline: none;
}

.chatbot-input input:focus {
    outline: none;
    box-shadow:none;
}

.chatbot-input button {
    background-color: #0077cc;
    color: white;
    border: none;
    padding: 0 15px;
    cursor: pointer;
}

#chatBotUserInput
{
  color: #495057 !important;
  background: #fff !important;
  padding: .5rem .5rem !important;
  border: 1px solid #ced4da !important;
  outline: 0 none !important;
  
}


.helplinktablea
{
    vertical-align:middle;
}
.helplinktableb
{
    vertical-align:middle;
}
.helplinktablec
{
    vertical-align:middle;
}


/* Mobile responsiveness */
@media (max-width: 800px) {
    .chatbot-circle {
        display:none;
    }
    .helplinktablec
    {
        display:none;
    }
}



/* Mobile responsiveness */
@media (max-width: 600px) {
    .chatbot-widget {
        width: 90%; /* Wider on smaller screens */
        right: 5%;
        left: 5%;
        bottom: 10px;
        max-height: 90vh;
    }
}
