﻿.p-16 {
    padding: 16px;
}

.p-20 {
    padding: 20px;
}

.p-10 {
    padding: 10px;
}

.boot-modal-content {
    width: 423px;
    position: relative;
    left: 33rem;
    bottom: 36px;
}

@media(min-width:1325px) and (max-width:1416px) {
    .boot-modal-content {
        left: 29rem;
    }
}

@media(min-width:861px) and (max-width:1324px) {
    .boot-modal-content {
        left: 22rem;
    }
}

@media(max-width:860px) {
    .boot-modal-content {
        left: 0px;
    }
}

@media(max-width:350px) {
    .boot-modal-content {
        width: auto;
    }
}

.border-20 {
    border-radius: 21px;
}

.font-white {
    color: #fff;
}

.h-650 {
    height: 650px;
}

.mb-174px {
    margin-bottom: 174px;
}

.chatbot-chat-container {
    border-radius: 20px 20px 0 0;
    overflow: hidden;
   /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);*/
    background-color: #fff;
}

.header2 {
    height: 74px;
    background: #26C0E2 !important;
}

.chat-header {
    background-color: #007bff;
    color: #fff;
    text-align: center;
}

.chat-message {
    background: linear-gradient(180deg, #26C0E2 0%, white 100%);
    overflow-y: auto;
}

.user-message {
    margin-top: 20px;
    margin-right: 20px;
    text-align: right;
    color: #fff;
    width: fit-content;
    max-width: 82%; /* Ensures the width does not exceed 80% */
    margin-left: auto;
    padding: 16px 18px;
    border-radius: 6px;
    background: #26C0E2;
    word-wrap: break-word; /* Ensures long words are wrapped to fit within the max width */
}

.message-time {
    margin-top: 6px;
    float: right;
    margin-right: 17px;
    color: var(--stamp-text, #737376);
    font-family: Nunito;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 15.6px */
}

.bot-message-text {
    margin-top: 16px;
    color: #000;
    width: fit-content;
    padding: 12px 12px;
    margin-right: auto;
    border-radius: 10px;
    background: #F2F2F2;
    margin-right: 10px;
}

.bot-message-wrapper {
    margin-left: 20px;
    margin-top: 20px;
    display: flex;
    align-items: end;
    gap: 10px;
}

.input-container {
    display: flex;
    align-items: center;
    border-top: 1px solid #EBEBEB;
}

.chat-input {
    flex: 1;
    padding: 10px;
    border: none;
    outline: none;
}

.send-button {
    padding: 10px;
    background-color: #007bff;
    color: #fff;
    border: none;
    cursor: pointer;
    outline: none;
}

.chatbot-messages {
    padding: 16px 18px;
    border-radius: 10px;
    background: #F2F2F2;
}
.bot-message-icon {
    width:32px;
    height:32px;
    border-radius: 50%;
    background: #1AC7DE45;
    display: flex;
    width: 32px;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 10px;
}

.bot {
    position: fixed;
    bottom: 80px;
    right: 20px;
}

