body {
    font-family: Arial, sans-serif;
    margin: 0;
}
.chatBoxOuter .chat-box .sidebar-toggle,
.chatBoxOuter .chat-box .back {
    position: absolute;
    left: 20px;
    top: 10px;
    cursor: pointer;
    border: 1px solid #ccc;
    text-align: center;
    border-radius: 100px;
    color: #333;
    width: 40px;
    height: 40px;
    right: 0;
    line-height: 40px;
    font-size: 16px;
}
.chatBoxOuter .chat-box .back{
    left:80px;
}
.chatBoxOuter .sidemenu.collapsed {
    width: 0;
    padding: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}
.chatBoxOuter .chat-box {
    transition: margin-left 0.3s ease;
}

.sidemenu-top .logo img {
    width: 70px;
    /* background: #fff; */
    width: 50px;
    height: 45px;
    object-fit: cover;
}
.sidemenu-top .logo {
    display: flex;
    align-items: center;
    column-gap: 10px;
    border-bottom: 1px solid #ccc;
    margin-bottom: 15px;
    padding-bottom: 6px;
}
.chat-box #welcome-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.chat-box #welcome-text h2{
    margin: 0px;
    font-size: 30px;
}
.chatBoxOuter {
    width: 100%;
    display: flex;
}
.chatBoxOuter .sidemenu {
    width: 240px;
    padding: 10px 20px 20px 20px;
    background-color: #f5f5f5;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}
.chatBoxOuter .sidemenu .sidemenu-top {
    overflow-x: hidden;
    height: calc(100vh - 105px);
    padding-right: 10px;
}
.chatBoxOuter #chatBox::-webkit-scrollbar,
.chatBoxOuter .sidemenu .sidemenu-top::-webkit-scrollbar{
    width: 5px;
    background-color: #e3e3e3;
    border-radius: 10px;
}
.chatBoxOuter #chatBox::-webkit-scrollbar-thumb,
.chatBoxOuter .sidemenu .sidemenu-top::-webkit-scrollbar-thumb{
    background-color: #d1d1d1;
    border-radius: 10px;
}
.chatBoxOuter .sidemenu .sidemenu-top .old-chat h2{
    margin: 15px 0 10px 0;
    font-size: 18px;
}
.chatBoxOuter .sidemenu .sidebar-menu-item {
    margin-bottom: 15px;
}
.chatBoxOuter .sidemenu .sidebar-menu-item .new-chat{
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 100px;
    display: flex;
    color: #333;
    text-decoration: none;
    align-items: center;
    column-gap: 10px;
    transition: 0.5s;
}

.chatBoxOuter .sidemenu .old-chat ul {
    padding: 0;
    margin: 0 0 0px 0;
    list-style: none;
}
.chatBoxOuter .sidemenu .old-chat ul li {
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 100px;
    display: flex;
    color: #333;
    text-decoration: none;
    align-items: center;
    column-gap: 10px;
    transition: 0.5s;
    margin-bottom: 8px;
    transition: 0.5s;
}
.chatBoxOuter .sidemenu textarea.model-textarea {
    background-color: #f5f5f5;
    width: 205px;
    padding: 8px;
    padding-bottom: 12px;
    height: 30px;
    border: 1px solid #ccc;
    border-radius: 5px;
    text-align: center;
    resize: none;
    color: #333;
    outline: none;
    margin-bottom: 10px;
}
.chatBoxOuter .chat-box {
    flex: 1 1;
    padding: 60px 0px 20px 0px;
    position: relative;
}
.chatBoxOuter .chat-box .user-message, .chatBoxOuter .chat-box .bot-message {
    max-width: fit-content;
    padding: 10px 15px;
    margin: 5px;
    font-size: 14px;
    line-height: 1.4;
    border: 1px solid #ebebeb;
    border-radius: 40px;
}

.chatBoxOuter .chat-box .user-message {
    background: #ffffff;
    align-self: flex-end;
}
.chatBoxOuter #chatBox {
    text-align: left;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    height: calc(100vh - 145px);
    padding: 0 20px;
}
.chatBoxOuter .chat-input-box {
    display: flex;
    align-items: center;
    background-color: #f5f5f5;
    padding: 12px;
    border-radius: 30px;
    border: 1px solid #ccc;
    column-gap: 10px;
}
.chatBoxOuter .chat-input-box input {
    flex: 1;
    background: transparent;
    border: none;
    color: #333;
    outline: none;
    font-size: 16px;
    padding: 10px;
}
.chatBoxOuter .chat-input-box button {
    background: none;
    color: #333;
    font-size: 14px;
    cursor: pointer;
    border: 1px solid #ccc;
    border-radius: 100%;
    height: 30px;
    width: 30px;
}
.chat-input-box button:hover {
    color: #0a84ff;
    background-color: #fff;
}
.chat-input-box button:hover i{
    color: #333;
}
.chat-box .top-navigation-header {
    border-bottom: 1px solid #efefef;
}
.profile-section .profile-button {
    position: relative;
    cursor: pointer;
    border: 1px solid #ccc;
    text-align: center;
    border-radius: 100px;
    color: #333;
    transition: 0.5s;
    width: 40px;
    height: 40px;
    right: 0;
    line-height: 40px;
    font-size: 16px;
}
.profile-section .profile-dropdown {
    display: none;
    background: #fff;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 20px;
    position: absolute;
    right: 0;
    width: 215px;
    top: 50px;
}
.profile-section .profile-dropdown li {
    padding: 10px 10px;
    transition: 0.3s;
    color: #333;
}
.profile-section .profile-dropdown li:hover {
    background-color: #f5f5f5;
    border-radius: 10px;
}
.profile-section .profile-dropdown span.close {
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
}
.profile-section .profile-dropdown ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.top-navigation-header .profile-section {
    position: absolute;
    top: 10px;
    right: 25px;
}
.chatBoxOuter .sidemenu .sidebar-menu-item .new-chat:hover,
.profile-section .profile-button:hover,
.chatBoxOuter .sidemenu .old-chat ul li:hover {
    background-color: #ccc;
}
div#chatBoxInput {
    padding: 0 20px;
}

.loading-dots {
    font-size: 20px; /* Adjust the size as needed */
    animation: blink 1s infinite;
  }

@keyframes blink {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
}

.user-question {
  background-color: #e0f7fa !important; /* light blue */
  color: #004d60 !important; /* darker blue for contrast */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  font-family: Arial, sans-serif;
}

/* .bot-message p {
    margin-bottom: 3px;
}
.bot-message ul, .bot-message ol {
    margin: 10px 0;
    padding-left: 20px;
}
.bot-message strong {
    color: #000;
} */
