.oikko-dashboard-wrapper .logo-lg {
    width: auto;
    height: 50px;
}

.oikko-dashboard-wrapper .user_display_name {
    margin-left: 5px;
}

.oikko-dashboard-wrapper .icon-color1 {
    background-color: rgb(46, 217, 185);
}

.oikko-dashboard-wrapper .icon-color2 {
    background-color: rgb(173, 62, 128);
}

.oikko-dashboard-wrapper .icon-color3 {
    background-color: rgb(65, 118, 255);
}

.oikko-dashboard-wrapper .icon-color4 {
    background-color: rgb(225, 48, 113);
}

.oikko-dashboard-wrapper .icon-color5 {
    background-color: rgb(190 48 225);
}

.oikko-dashboard-wrapper .icon-color6 {
    background-color: rgb(92 48 225);
}

.oikko-dashboard-wrapper .icon-color7 {
    background-color: rgb(48 184 225);
}

.oikko-dashboard-wrapper .icon-color8 {
    background-color: rgb(225 48 48);
}

.oikko-dashboard-wrapper .icon-color9 {
    background-color: rgb(171 150 5);
}

.oikko-dashboard-wrapper .icon-color10 {
    background-color: rgb(171 5 5);
}

.oikko-dashboard-wrapper .icon-color11 {
    background-color: rgb(0 60 60);
}

.oikko-dashboard-wrapper .icon-color12 {
    background-color: rgb(5 171 10);
}

.oikko-dashboard-wrapper .icon-color13 {
    background-color: rgb(5 171 125);
}

.oikko-dashboard-wrapper .icon-color14 {
    background-color: rgb(145 107 2);
}

.oikko-dashboard-wrapper #direct-message-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    background-color: #fff;
    box-shadow: 0 3px 10px 0 rgb(0 0 0 / 6%);
    height: calc(100vh - 60px);
    overflow: hidden;
}

.oikko-dashboard-wrapper .dm-sidebar {
    width: 300px;
    border-right: 1px solid #e9e9e9;
    padding: 20px;
    overflow-y: scroll;
    min-width: 300px;
}

.oikko-dashboard-wrapper .dm-sidebar::-webkit-scrollbar {
    width: 6px;
    /* Thin scrollbar */
}

.oikko-dashboard-wrapper .dm-sidebar::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.3);
    /* Scrollbar color */
    border-radius: 3px;
    /* Rounded edges */
}

.oikko-dashboard-wrapper .dm-sidebar::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 0, 0, 0.5);
    /* Darker color on hover */
}

.oikko-dashboard-wrapper .dm-sidebar::-webkit-scrollbar-track {
    background: transparent;
    /* Hide scrollbar track */
}


/* Hide scrollbar by default */

.oikko-dashboard-wrapper .dm-sidebar {
    scrollbar-width: thin;
    /* Firefox support */
    scrollbar-color: transparent transparent;
}

.oikko-dashboard-wrapper .dm-sidebar:hover {
    scrollbar-color: rgba(0, 0, 0, 0.3) transparent;
}


/* Hide scrollbar completely until hover for Webkit browsers */

.oikko-dashboard-wrapper .dm-sidebar::-webkit-scrollbar {
    display: none;
}

.oikko-dashboard-wrapper .dm-sidebar:hover::-webkit-scrollbar {
    display: block;
}

.oikko-dashboard-wrapper .dm-chatbox {
    width: calc(100% - 300px);
    background-color: #f4f1e9;
    background-image: url(../images/wtspbg.png);
    background-size: contain;
    background-position: center;
    min-width: 300px;
}

.oikko-dashboard-wrapper .dm-vertical-btn-wrap {
    width: 100%;
}

.oikko-dashboard-wrapper .btn-wrap {
    width: 100%;
}

.oikko-dashboard-wrapper .btn-wrap .btn {
    width: 100%;
    border: 0;
    color: #000;
    text-align: left;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #f5f5f5;
    outline: 0;
    position: relative;
}

.oikko-dashboard-wrapper .btn-wrap .btn .chat-img img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.oikko-dashboard-wrapper .user-status-update {
    width: 12px;
    height: 12px;
    background-color: #b9b9b9;
    position: absolute;
    border-radius: 50%;
    bottom: 0;
    right: 0;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    border: 2px solid #fff;
}

.oikko-dashboard-wrapper .user-status-update.active {
    background-color: #52db05;
}

.oikko-dashboard-wrapper .user-status-update.inactive {
    background-color: #b9b9b9;
}

.oikko-dashboard-wrapper .user-status-update.away {
    background-color: #fbbe22;
}

.oikko-dashboard-wrapper .btn-wrap .btn .chat-img {
    margin-right: 10px;
    position: relative;
}

.oikko-dashboard-wrapper .dm-sidebar .btn-wrap .btn:hover {
    color: inherit;
    background-color: #f5f5f5;
    border-bottom: 1px solid #f5f5f5;
}

.oikko-dashboard-wrapper .dm-sidebar .btn-check:checked+.btn {
    background-color: #eaf5ff;
    color: #000;
    border-bottom: 1px solid #f5f5f5;
    outline: 0;
}

.oikko-dashboard-wrapper #chat-box p {
    margin-bottom: 0;
}

.oikko-dashboard-wrapper .single-chat-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 3px 20px;
    transition: 0.3s;
    position: relative;
    width: max-content;
    max-width: 100%;
}

.oikko-dashboard-wrapper .single-chat-wrap .user-message {
    border-radius: 5px;
    border-bottom: 1px solid #d3d3d3;
    padding: 8px;
    background-color: #fff;
}

.oikko-dashboard-wrapper .single-chat-wrap .user-img {
    margin-right: 10px;
}

.oikko-dashboard-wrapper .single-chat-wrap .user-img img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.oikko-dashboard-wrapper .single-chat-wrap.rtl {
    width: 100%;
    max-width: 100%;
    direction: rtl;
}

.oikko-dashboard-wrapper .single-chat-wrap.rtl .user-img {
    display: none;
}

.oikko-dashboard-wrapper .single-chat-wrap.rtl .user-message {
    direction: ltr;
    background-color: #d8fdd2;
}

.oikko-dashboard-wrapper .single-chat-wrap.rtl .user-name {
    display: none;
}

.oikko-dashboard-wrapper .single-chat-wrap.rtl .user-text {
    margin-right: 30px;
}

.oikko-dashboard-wrapper .user-sent-time {
    text-align: right;
    font-size: 10px;
    color: #667781;
}

.oikko-dashboard-wrapper .message-input-wrap {
    width: 100%;
    position: relative;
    bottom: 0;
}

.oikko-dashboard-wrapper #chat-box {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.oikko-dashboard-wrapper #messages-container {
    overflow: hidden auto;
    position: relative;
    height: 100%;
    overflow-y: auto;
}

.oikko-dashboard-wrapper #chat-box .user-name {
    background-color: #f8f9fa;
    padding: 2px 0px;
    padding-right: 30px;
}

.oikko-dashboard-wrapper .user-text img {
    margin-top: 5px;
    margin-bottom: 5px;
    max-width: 200px;
    display: block;
}

.oikko-dashboard-wrapper div.mce-path {
    padding: 6px !important;
}

.oikko-dashboard-wrapper .user-actions {
    position: absolute;
    right: 28px;
    top: 11px;
}

.oikko-dashboard-wrapper .user-actions .btn.dropdown-toggle {
    background-color: #e7e7e733;
    padding: 0;
    width: 25px;
    height: 25px;
    border-radius: 0;
    border: 0;
    color: #a9a9a9;
    font-size: 20px;
    margin: 0px;
    right: 0;
    margin-top: 0px;
    display: block;
}

.oikko-dashboard-wrapper .single-chat-wrap:hover>.user-actions .btn.dropdown-toggle {
    display: block;
}

.oikko-dashboard-wrapper input[name=emoji] {
    width: 0;
    height: 0;
    visibility: hidden;
}

.oikko-dashboard-wrapper .emoji-label-group {
    display: inline-block;
}

.oikko-dashboard-wrapper .emoji-wrap .emoji-label-group {
    padding: 3px;
    cursor: pointer;
}

.oikko-dashboard-wrapper .emoji-wrap .emoji-label-group:hover {
    background-color: #f7f7f7;
}

.oikko-dashboard-wrapper .emoji-label-group.you-selected {
    background-color: #f7f7f7;
}

.oikko-dashboard-wrapper .emoji-wrap .emoji-label-group img.emoji {
    width: 25px !important;
    height: 25px !important;
}

.oikko-dashboard-wrapper .emoji-wrap .dropdown-menu {
    width: max-content;
}

.oikko-dashboard-wrapper .user-reactions {
    background-color: aliceblue;
    border-radius: 5px;
    width: max-content;
    cursor: pointer;
}

.oikko-dashboard-wrapper .user-reactions span {
    padding: 5px;
}

.oikko-dashboard-wrapper #chat-box .wp-editor-tools {
    position: absolute;
    z-index: 1;
    bottom: 1px;
    right: 71px;
}

@media screen and (max-width: 782px) {
    .oikko-dashboard-wrapper #chat-box .wp-core-ui .button {
        line-height: 0;
        min-height: 31px;
        max-height: 31px;
        margin-bottom: 0;
    }
    .oikko-dashboard-wrapper #direct-message-container {
        overflow: visible;
    }
}

.oikko-dashboard-wrapper #chat-box .wp-core-ui .button {
    color: #000;
    background-color: #f8f9fa;
    border-color: #f8f9fa;
    outline: 0;
    margin: 0;
}

.oikko-dashboard-wrapper #chat-box .dropstart .dropdown-toggle::before {
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}

.oikko-dashboard-wrapper #chat-box .dropstart .dropdown-toggle:empty::before {
    margin-left: 0;
    margin-right: 0;
}

.oikko-dashboard-wrapper .user-list-modal {
    display: none;
    position: relative;
    margin-top: 5px;
}

.oikko-dashboard-wrapper .ReactionSlideClose {
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
}

.oikko-dashboard-wrapper .userReactHead {
    background-color: #fff8ed;
    color: #ff7f50;
}

.oikko-dashboard-wrapper .userReactLine .userImg img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.oikko-dashboard-wrapper .userReactLine {
    margin-bottom: 2px;
    padding-bottom: 2px;
    border-bottom: 1px dashed #dbdbdb;
}

.oikko-dashboard-wrapper .userReactLine span {
    margin: 5px;
}


/*Editable Test purpose css*/

.oikko-dashboard-wrapper .single-chat-wrap {
    margin-bottom: 15px;
}

.oikko-dashboard-wrapper .o-user-text,
.oikko-dashboard-wrapper .user-text {
    margin: 5px 0;
}

.oikko-dashboard-wrapper .original-message {
    margin-top: 5px;
}

.oikko-dashboard-wrapper .original-message .o-user-message {
    background-color: #f8f9fa;
    border-left: 3px solid #7f99ff;
    border-radius: 0;
    padding-left: 10px;
    padding-top: 3px;
    padding-bottom: 3px;
    padding-right: 3px;
}

.oikko-dashboard-wrapper .reply-box {
    position: relative;
}

.oikko-dashboard-wrapper .reply-box .removeReplyBox {
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 0;
    padding: 10px;
}

.oikko-dashboard-wrapper #image-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#image-popup img {
    max-width: 90%;
    max-height: 90%;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
    border: 5px solid white;
    border-radius: 10px;
}

.oikko-dashboard-wrapper .user-text img {
    cursor: pointer;
}

.oikko-dashboard-wrapper .o-fw-message {
    color: #7f99ff;
    margin-bottom: 4px;
    display: block;
    font-size: 12px;
}

.oikko-dashboard-wrapper .o-user-name {
    color: #7f99ff;
}

.oikko-dashboard-wrapper .o-user-text {
    color: #777;
}

.oikko-dashboard-wrapper .msg-deleted {
    color: #8696A0;
    text-transform: capitalize;
}

.oikko-dashboard-wrapper .msg-deleted .user-sent-time {
    margin-top: 5px;
}

.oikko-dashboard-wrapper .reply-box .o-user-text img {
    width: 50px;
}

.oikko-dashboard-wrapper .unseenMsgCounter {
    background-color: #f5f5dc;
    width: max-content;
    border-radius: 5px;
    border: 1px solid #d3d3d3;
    padding: 2px 5px;
    margin: 5px auto;
    display: block;
}

.oikko-dashboard-wrapper .btn-wrap .btn .chat-name {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow: hidden;
    height: 100%;
    justify-content: center;
}

.oikko-dashboard-wrapper #load-more-messages {
    text-align: center;
    margin-bottom: 5px;
    margin-top: 5px;
}

.oikko-dashboard-wrapper #load-more-messages .spinner-border {
    width: 15px;
    height: 15px;
    margin-left: 5px;
}

.oikko-dashboard-wrapper .msg-container-loader {
    position: absolute;
    top: 50%;
    left: 50%;
}

.oikko-dashboard-wrapper #messages-header {
    background-color: #fff;
    padding: 10px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e9e9e9;
    min-height: 60px;
}

.oikko-dashboard-wrapper #messages-header .chat-img img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.oikko-dashboard-wrapper #messages-header .chat-name {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow: hidden;
    height: 100%;
    justify-content: center;
}

.oikko-dashboard-wrapper #messages-header .call-video {
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    border: 1px solid #50a8ff;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #0080ff;
}

.oikko-dashboard-wrapper #messages-header .call-video:hover {
    background-color: #0080ff;
    color: #fff;
}

.oikko-dashboard-wrapper #messages-header .chat-actions {
    display: flex;
}

.oikko-dashboard-wrapper #messages-header .chat-actions .chat-call-audio {
    margin-right: 5px;
}

.oikko-dashboard-wrapper .video-call-iframe-wrap {
    display: flex;
    gap: 10px;
}

.oikko-dashboard-wrapper .video-call-iframe-wrap video {
    display: inline-block;
    width: 100%;
    height: 300px;
}

.oikko-dashboard-wrapper .video-frame-inner {
    position: relative;
    width: 50%;
    padding: 5px;
    background-color: #000;
    height: 300px;
}

.oikko-dashboard-wrapper .video-fullscreen {
    position: absolute;
    bottom: 0;
    right: 0;
    color: #fff;
    font-size: 20px;
    padding: 10px;
    width: 50px;
    height: 50px;
    text-align: center;
    cursor: pointer;
    z-index: 3;
}

.oikko-dashboard-wrapper .video-fullscreen:hover {
    color: rgb(65, 118, 255)
}

.oikko-dashboard-wrapper #video-local-username,
.oikko-dashboard-wrapper #video-remote-username {
    position: absolute;
    left: 5px;
    bottom: 10px;
    background-color: #0000006e;
    color: #fff;
    padding: 5px;
}

.oikko-dashboard-wrapper #video-remote-img,
.oikko-dashboard-wrapper #video-local-img {
    position: absolute;
    left: 0;
    top: 0;
    background: transparent;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.oikko-dashboard-wrapper #video-remote-img img,
.oikko-dashboard-wrapper #video-local-img img {
    width: 100px;
    height: auto;
}

.oikko-dashboard-wrapper #video-remote-img.hide,
.oikko-dashboard-wrapper #video-local-img.hide {
    display: none;
}

.oikko-dashboard-wrapper #video-call-logs {
    height: 100px;
    overflow-y: scroll;
}

.oikko-dashboard-wrapper .incomingCallHtml {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.oikko-dashboard-wrapper .incomingCallHtml i {
    font-size: 48px;
    color: #3ad630;
    margin-bottom: 10px;
    transform: rotate(327deg);
}

.oikko-dashboard-wrapper .swal-title-custom-class {
    font-size: 20px;
    background-color: #dbdbdb;
    margin: 0;
    padding: 10px;
    text-transform: uppercase;
}

.oikko-dashboard-wrapper .swal2-html-container .callerName {
    font-weight: bold;
    font-size: 20px;
}

div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-confirm) {
    background-color: rgb(48, 214, 105) !important;
}

div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-cancel) i {
    transform: rotate(130deg);
}

.oikko-dashboard-wrapper #clockmessage-container {
    margin-top: 10px;
}

.oikko-dashboard-wrapper #attendance-status {
    font-family: 'Courier New', monospace;
    /* Give it a digital look */
    text-align: center;
    margin-top: 20px;
    padding: 10px;
    background-color: #2d2d2d;
    border-radius: 10px;
    color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    display: inline-block;
    margin-right: 10px;
}

.oikko-dashboard-wrapper .duration-title {
    font-size: 16px;
    color: #bbb;
    margin-right: 10px;
}

.oikko-dashboard-wrapper .clock-display {
    font-size: 28px;
    font-weight: bold;
    color: #00ff00;
    /* Green color for the clock */
    letter-spacing: 2px;
    padding: 5px;
    background: #333;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
    display: inline-block;
}

.oikko-dashboard-wrapper #messages-container::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.oikko-dashboard-wrapper #messages-container::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 10px;
}

.oikko-dashboard-wrapper #messages-container::-webkit-scrollbar-thumb:hover {
    background-color: #555;
}

.oikko-dashboard-wrapper #messages-container::-webkit-scrollbar-track {
    background-color: #f1f1f1;
    border-radius: 10px;
}

.oikko-dashboard-wrapper #messages-container {
    scrollbar-width: thin;
    scrollbar-color: #888 #f1f1f1;
}

.oikko-dashboard-wrapper .message-input-wrap.ufpopup {
    position: absolute;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: flex-end;
    background-color: #f0f8ff;
}

.oikko-dashboard-wrapper .message-input-wrap.ufpopup .message_file_upload {
    display: none;
}

.oikko-dashboard-wrapper .message-input-form-inner {
    display: flex;
    flex-direction: column;
    border: 1px solid #e9e9e9;
    margin: 20px;
    margin-bottom: 5px;
    margin-top: 5px;
    background: #fff;
    padding: 10px;
    border-radius: 10px;
}

.oikko-dashboard-wrapper #message-input {
    width: 100%;
    border: none;
}

.oikko-dashboard-wrapper .message-input-form-el-2 {
    display: flex;
    justify-content: space-between;
}

.oikko-dashboard-wrapper #file-upload-modal {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    margin: 20px;
    margin-bottom: 0;
    height: 100%;
}

.oikko-dashboard-wrapper #file-upload-modal .modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 100%;
    max-width: 100%;
    position: relative;
    height: 100%;
}

.oikko-dashboard-wrapper #file-upload-modal .modal-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 18px;
    cursor: pointer;
}

.oikko-dashboard-wrapper #file-drop-area {
    border: 2px dashed #ccc;
    padding: 20px;
    text-align: center;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    display: flex;
    align-items: center;
}

.oikko-dashboard-wrapper #file-drop-area.drag-over {
    background: #00000017;
}

.oikko-dashboard-wrapper #file-previews {
    margin-top: 20px;
    width: 100%;
}

.oikko-dashboard-wrapper .file-preview {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    justify-content: space-between;
}

.oikko-dashboard-wrapper .file-progress-bar {
    flex: 1;
    height: 5px;
    background: #ccc;
    border-radius: 5px;
    overflow: hidden;
}

.oikko-dashboard-wrapper .file-progress-bar span {
    display: block;
    height: 100%;
    width: 0;
    background: green;
}

.oikko-dashboard-wrapper #browse-files-btn {
    width: max-content;
}

.oikko-dashboard-wrapper .file-preview-el .file-name {
    margin-bottom: 5px;
}

.oikko-dashboard-wrapper .file-preview-el:nth-child(1) {
    width: 60px;
}

.oikko-dashboard-wrapper .file-preview-el:nth-child(2) {
    flex: 1;
    padding-left: 10px;
    padding-right: 10px;
    text-align: left;
}

.oikko-dashboard-wrapper .channel_details_btn.dropdown-toggle::after {
    display: none;
}

.oikko-dashboard-wrapper .dropdown.channel_details_dropdown .dropdown-menu .dropdown-item:hover {
    background-color: #fbfbfb;
}

.oikko-dashboard-wrapper .modal-footer .btn i {
    font-size: 14px;
}

.oikko-dashboard-wrapper .chat-info-wrapper .chat-image img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.oikko-dashboard-wrapper .chat-info-wrapper .chat-info-sec-1 {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    justify-content: space-between;
}

.oikko-dashboard-wrapper .chat-info-wrapper .chat-title {
    font-weight: normal;
}

.oikko-dashboard-wrapper .user_img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.oikko-dashboard-wrapper .chat-info-wrapper .chat-user-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #f9f9f9;
    padding-bottom: 10px;
}

.oikko-dashboard-wrapper .chat-info-wrapper .chat-user-wrap .chat-user-name {
    margin-left: 10px;
    flex: 1;
}

.oikko-dashboard-wrapper .chat-info-sec-1,
.oikko-dashboard-wrapper .chat-info-sec-2 {
    margin-bottom: 20px;
}

.oikko-dashboard-wrapper .chat-info-wrapper .chat-user-label {
    margin-bottom: 10px;
    font-weight: bold;
}

.oikko-dashboard-wrapper .chat-info-wrapper .ci_channel_user {
    width: 30px;
    height: 30px;
}

.oikko-dashboard-wrapper .chat-info-wrapper .chat-description:not(.flex-inherit) {
    flex: 1;
}

.oikko-dashboard-wrapper .chat-info-wrapper #ci_channel_desc {
    width: 100%;
    resize: none;
}

.oikko-dashboard-wrapper .chat-info-wrapper .chat-image {
    display: flex;
    flex-direction: column;
}

.oikko-dashboard-wrapper .chat-info-wrapper .chat-image-selection {
    display: flex;
    align-items: center;
}

.oikko-dashboard-wrapper .chat-info-wrapper #ci_channel_img {
    margin-left: 10px;
}

.oikko-dashboard-wrapper .chat-info-wrapper .form-label {
    font-weight: bold;
}

.oikko-dashboard-wrapper .chat-info-wrapper .chat-user-action {
    display: flex;
    gap: 5px;
}

.oikko-dashboard-wrapper .chat-info-wrapper .file-progress-bar {
    margin-top: 5px;
}

.oikko-dashboard-wrapper .chat-user-selection {
    height: 30px;
}

.oikko-dashboard-wrapper .ct-m-left-10 {
    margin-left: 10px;
}

.oikko-dashboard-wrapper .flex-inherit {
    flex: inherit;
}

.oikko-dashboard-wrapper #attendance,
.oikko-dashboard-wrapper #userprofile,
.oikko-dashboard-wrapper #documents,
.oikko-dashboard-wrapper #users-list,
.oikko-dashboard-wrapper #channels-settings,
.oikko-dashboard-wrapper #time-convert,
.oikko-dashboard-wrapper #departments,
.oikko-dashboard-wrapper .section-wrap,
.oikko-dashboard-wrapper #designations,
.oikko-dashboard-wrapper #shifts,
.oikko-dashboard-wrapper #leaves,
.oikko-dashboard-wrapper #leave_management,
.oikko-dashboard-wrapper #salary-management {
    padding: 15px 20px 20px;
    box-shadow: 0 3px 10px 0 rgb(0 0 0 / 6%);
    background-color: #fff;
    min-height: calc(100vh - 60px);
    background-color: #F8F9FA;
}

.oikko-dashboard-wrapper .section-wrap .border.rounded {
    background-color: #fff;
}

.oikko-dashboard-wrapper .section-wrap h3 {
    background-color: #1E3A8A;
    color: #fff;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    padding: 25px 20px;
    box-shadow: 0 4px 6px rgb(0 0 0 / 10%);
    font-size: 26px;
}

.oikko-dashboard-wrapper .spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

#oikko-dashboard-canvas .oikko-dashboard-wrapper .pc-header {
    width: 100%;
    position: fixed;
}

#oikko-dashboard-canvas .oikko-dashboard-wrapper .oikko-dashboard-inner-container {
    padding-top: 60px;
}

@media (min-width: 768px) {
    #oikko-dashboard-canvas .oikko-dashboard-wrapper .pc-sidebar:not(.pc-sidebar-hide) {
        width: 245px;
        border-right: 1px solid #e9e9e9;
    }
    #oikko-dashboard-canvas .oikko-dashboard-wrapper .pc-sidebar:not(.pc-sidebar-hide) .navbar-wrapper {
        position: fixed;
    }
}

.oikko-dashboard-wrapper {
    position: relative;
}

.oikko-dashboard-inner-container {
    display: flex;
    overflow-x: scroll;
    max-width: 100%;
}

#sidebar-hide {
    font-size: 15px;
    background-color: #e9e9e9;
    width: 25px;
    height: 25px;
    display: inline-block;
    line-height: 25px;
    text-align: center;
    color: #000;
}

.pc-sidebar.pc-sidebar-hide .pc-sidebar-collapse {
    text-align: center;
}

.pc-sidebar.pc-sidebar-hide {
    width: max-content;
    --pc-sidebar-border: none;
}

.pc-sidebar.pc-sidebar-hide .navbar-wrapper {
    width: max-content;
}

.pc-sidebar.pc-sidebar-hide .pc-link {
    width: max-content;
}

.pc-sidebar.pc-sidebar-hide .simplebar-content {
    width: max-content;
}

.pc-sidebar.pc-sidebar-hide .pc-navbar a>.pc-mtext {
    display: none;
}

.pc-sidebar.pc-sidebar-hide~.pc-header {
    left: 0;
}