body{
    background: #f4f6f7;
    height: 100%;
    margin: 0;
}

.wrapper {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.content {
    flex: 1;
    overflow-y: auto;
    padding: 0px 20px;
    margin-left: 5%;
    margin-right: 5%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid #dee2e6;
}

.header, .footer {
    background-color: #f8f9fa;
    text-align: center;
    flex-shrink: 0;
    padding: 0% 5%;
}

.header-section {
    padding: 0px;
}

.header-img-wrapper {
    height: 60px;
    width: 150px;
    border-right: 2px solid #d7d4d4;
    padding: 3px;
}

.header-img-wrapper img {
    width: 100%;
}

.header li {
    border-right: 2px solid #d7d4d436;
}

.scroll-box {
    /*height: 100vh; */     
    overflow-y: auto;  
}

.chat-left-panel {
    background: #f8f9fa;
    border-right: 2px solid #ddd;
}

.chat-right-panel {
    background: #ffffff;
    padding: 0px 3px !important;
}

.sidebar-icon {
    cursor: pointer;
    padding: 0px 5px;
    font-size: 22px;
}

.chat-history-container {
    font-size: 20px;
    font-style: italic;
    color: red;
}

.chat-body {
    overflow-y: auto;
    background: #e2e2f36e;
}

.question-txt {
    padding: 10px !important;
    min-width: 50%;
}

.reply-txt {
    padding: 10px !important;
    min-width: 50%;
}

.chat-bot-icon {
    font-size: 25px;
    border: 1px solid #adcdff;
    border-radius: 25px;
    height: 40px;
    width: 40px;
    text-align: center;
}

.chat-user-icon {
    font-size: 25px;
    color: #5ab54b;
    border: 1px solid #5ab54b;
    border-radius: 25px;
    height: 40px;
    width: 40px;
    text-align: center;
}

.question-input-textbox, .question-input-textbox:focus, .question-input-textbox:active {
    border: none;
    padding: 0px 5px;
    box-shadow: none;
}

.send-question-btn, .send-question-btn:hover {
    font-size: 25px;
    padding: 0px;
    width: 50px;
    text-align: center;
    border: none;
    border-radius: 0px;
    color: #2cd993;
    background: #ffffff;
}

.chat-input-area  {
    padding: 2px !important;
    border: 1px solid #2cd993;
    border-radius: 0px;
}


.chat-loader {
    display: inline-flex;
    gap: 4px;
    position: absolute;
    left: 50%;
    bottom: 2.5vh;
}

.chat-loader::before, .chat-loader::after, .chat-loader span {
    content: '';
    width: 10px;
    height: 10px;
    background: #3e3a3a;
    border-radius: 50%;
    animation: blink 1.4s infinite both;
}

.chat-loader::after { animation-delay: .2s; }
.chat-loader span { animation-delay: .4s; }

@keyframes blink {
    0% { opacity: .2; }
    20% { opacity: 1; }
    100% { opacity: .2; }
}

.hidden {
    display: none;
}

.error-content, .unauthorize-content {
    text-align: center;
    padding: 9% 10%;
}

.unauthorize-content h1{
    color: orange;
}

.page-title-text {
    background-color: #ebedf880 !important;
    color: #515cb5;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    background: #fff;
    box-shadow: 0px 0px 12px -4px #3751df;
    margin-bottom: 9px;
    padding: 3px 0px;
}

