#body {
    background-color: #dfd9db !important;
    color: #383737 !important;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: Georgia, "Times New Roman", Times, serif;
}

/* Floating Chat Button */
.chat-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #17a2b8; /* Matches your 'btn-info' */
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: transform 0.3s;
}
.chat-btn:hover { transform: scale(1.1); }

/* Chat Box Container */
.chat-box {
    display: none; /* Hidden by default */
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 350px;
    height: 450px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #ddd;
}

/* Header */
.chat-header {
    background: #17a2b8;
    color: white;
    padding: 15px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Messages Area */
.chat-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    background: #f8f9fa;
    font-size: 14px;
}
.message { margin-bottom: 10px; clear: both; }
.message.user { text-align: right; }
.message.user .content { background: #e3f2fd; display: inline-block; padding: 8px 12px; border-radius: 15px 15px 0 15px; }
.message.bot .content { background: #fff; border: 1px solid #ddd; display: inline-block; padding: 8px 12px; border-radius: 15px 15px 15px 0; }

/* Input Area */
.chat-input-area {
    padding: 10px;
    border-top: 1px solid #ddd;
    display: flex;
    background: white;
}
.chat-input-area input {
    flex: 1;
    border: 1px solid #ccc;
    border-radius: 20px;
    padding: 8px 15px;
    outline: none;
}
.chat-input-area button {
    margin-left: 10px;
    background: #17a2b8;
    border: none;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
}
#header {
    background-color: #083424 !important;
    color: #fff !important;
}
#sidebar {
    background-color: #083424 !important;
    color: #fff !important;
}
#footer {
    background-color: #083424;
    color: #fff;
    text-align: center;
    padding-top: 15px;
    padding-bottom: 15px;
    width: 100%;
    bottom: 0;
    left: 0;
    z-index: 1000;
    box-sizing: border-box;
}

#footer a {
    color: #fff !important;
    font-size: 18px;
}
#footer a:hover {
    color: #ff8d00 !important;
}
#notificationdropdown {
    background-color: #083424 !important;
}
#notificationdropdown i:hover {
    color: #ff8d00 !important;
}
#avatar {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #242020;
    padding: 10px;
    text-align: center;
}
#collapsebtn {
    color: #fff !important;
}
#collapsebtn:hover {
    color: #ff8d00 !important;
}
#searchbtn:hover {
    color: #222121 !important;
}
#content {
    border-radius: 8px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 1px;
    background-color: rgb(239, 240, 239);
    margin-bottom: 80px;
}
#login {
    text-align: center;
}
#logintitle {
    bottom: 2px !important;
    color: #ffffff !important;
    margin-top: 20px;
    font-weight: 500;
}
#loginbody {
    color: #ffffff !important;
    font-size: 16px;
    margin-top: 40px;
}
#loginpagelabel {
    color: #ffffff !important;
    font-size: 16px;
}
#loginpageurl {
    color: #ff8d00 !important;
}
#loginpageurl:hover {
    color: #ffffff !important;
}
#viewallnotifications {
    background-color: #083424 !important;
}
#viewallnotifications a {
    color: #ffffff !important;
}
#viewallnotifications a:hover {
    color: #ff8d00 !important;
}
#loginwrapper {
    background-color: #dfd9db !important;
}

.btn-xs {
    padding: 0.2rem 0.3rem;
    font-size: 0.7rem;
    line-height: 1.3;
    border-radius: 0.2rem;
}

.dt-buttons .btn {
    margin-right: 5px;
    padding: 0.2rem 0.3rem;
    font-size: 0.7rem;
    line-height: 1.3;
    border-radius: 0.2rem;
}
