
.chat-message.bot{
    padding: 1px 1px;
    margin-right:20px ;
}

.chat-message .logo {
    margin-right: 10px;
}

.chat-message .logo img {
    height: 60px;
    width: auto;
}

.chat-message.bot .message {
    background-color: #d42c34;
    color: #ffffff;
    padding: 10px;
    border-radius: 10px;
    font-size:14px;
}
.chat-message.bot .message p {
    margin: 5px; /* reduces the margin */
}


.chat-message {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateX(30px);
    animation: slideIn 0.3s forwards;
    max-width: 100%;
    word-wrap: break-word; /* Wrap long words */
    z-index: 500;
}

.fast_chat_message{
    transform: none;
    animation: none;

}




.chat-message.user{
    margin-left:20px ;
}

.chat-message.user .message {
    background-color: #e6dede;
    padding: 10px;
    border-radius: 10px;
    margin-top: 10px;
    align-self: flex-end;
    margin-left: auto;
    
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}






/* Remove this inline CSS code later */
body {
    font-family: "Montserrat";
    background-color: #f3edef;
}     

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 5px; /* Width of the scrollbar */
}

::-webkit-scrollbar-thumb {
    background: #c5151e; /* Color of the scrollbar handle    #c5151e*/
    border-radius: 4px 4px 4px 4px;
}

::-webkit-scrollbar-track {
    background: #f0f0f0; /* Color of the scrollbar track */
    width: auto;
       
}   

::-webkit-scrollbar-thumb:hover {
    background: #7e0f14; /* Darker color on hover   #7e0f14 */
}
.footer-link-container {
    position: fixed;
    bottom: 80px;
    right: 10px;
    font-size: 10px;
    padding: 0;
    background-color: transparent;
    z-index: 10;
}

/* Footer link style */
.footer-link {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s;
}


.fill_box {
    width: auto;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: auto;
    padding-top: 5px;
}

.intro-text {
    text-align: center;
    color: #333;
    font-size: 14px;
    line-height: 1.6;
    padding: 0 5px;
    margin-top: 5px;
}

.intro-heading {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
    margin-top: 1px;
}

.intro-subtext {
    margin-top: 5px;
}
