body {
    overflow-x: hidden;
}

#wrapper {
    display: flex;
    width: 100%;
}

#sidebar-wrapper {
    min-width: 200px;
    max-width: 200px;
    height: 100vh;
    overflow-y: auto;
    background: #f8f9fa;
    position: fixed;
}

#page-content-wrapper {
    width: 100%;
    margin-left: 200px;
}

@media (max-width: 768px) {
    #sidebar-wrapper {
        margin-left: -200px;
    }
    #sidebar-wrapper.toggled {
        margin-left: 0;
    }
    #page-content-wrapper {
        margin-left: 0;
        /*padding: 20px;*/
    }
    #page-content-wrapper.toggled {
        margin-left: 200px;
    }
}

.custom-select-wrapper {
    position: relative;
    width: 40%;
}

.custom-select .dropdown-toggle {
    width: 100%;
    text-align: center;
}

.custom-select {
    background: none;
}

.custom-select-options {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #fff;
    border: 1px solid #ccc;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.message {
    margin-top: 15px;
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 16px;
    display: inline-block;
    max-width: 80%;
    word-wrap: break-word;
    font-size: 14px;
}

.chatBubble {
    margin-left: 15px;
    clear: both;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.bot-message {
    background-color: #f3f3f3;
    text-align: left;
    float: left;
    margin-left: 15px;
    clear: both;
}

.user-message {
    background-color: #007bff;
    color: white;
    float: right;
    margin-right: 15px;
    clear: both;
}

.thumbs-container {
    margin-top: 1px;
}

.thumb-icon {
    margin-right: 5px;
}

#chatbox::after {
    content: "";
    display: table;
    clear: both;
}

.chat-box-textarea {
    border-style: none;
    /* overflow: auto; */

    resize: none; /* Disable resizing */
    outline: none; /* Remove the default focus outline */
    box-shadow: none; /* Remove the shadow that might appear on focus */
    border-color: initial; /* Reset border color if it changes on focus */
}

.chat-box-textarea:focus {
    border-color: #ccc; /* Example: light gray border on focus */
    outline: none; /* Remove the default focus outline */
    box-shadow: none; /* Remove the shadow that might appear on focus */
}

.input-group>.form-control:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-top-left-radius: 0;
}



.chat-bubble {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.typing-indicator {
    display: flex;
    align-items: center;
}

.typing-indicator > span {
    display: block;
    background: #cacaca;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 4px;
    animation: blink 1.4s infinite both;
}

.typing-indicator > span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator > span:nth-child(3) {
    animation-delay: 0.4s;
}

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

.bg-light-gray {
    background-color: #f3f3f3;
}

.modal-dialog {
    max-width: 800px;
}

.modal-body-scrollable {
    max-height: 60vh;
    overflow-y: auto;
}
img {
    max-width: 100%;
}

.avatar-img {
    border-radius: 50%;
}

.referenceLink {
    margin-bottom: 5px;
}