﻿/* ------------------------------------------------------------------------------
 *
 *  # PNotify notifications
 *
 *  Styles for pnotify.min.js - a flexible JavaScript notification plugin
 *
 *  Version: 1.1
 *  Latest update: Mar 10, 2016
 *
 * ---------------------------------------------------------------------------- */
.ui-pnotify {
    top: 20px;
    left: 20px;
    position: fixed;
    height: auto;
    z-index: 2;
    border-radius: 3px;
}

body > .ui-pnotify {
    position: fixed;
    z-index: 100040;
}

.ui-pnotify.alert-rounded > .ui-pnotify-container {
    border-radius: 100px;
}

.ui-pnotify[class*=bg-] > .ui-pnotify-container {
    background-color: inherit;
    border-color: transparent;
    color: #fff;
}

.ui-pnotify[class*=text-] > .ui-pnotify-container,
.ui-pnotify[class*=alpha-] > .ui-pnotify-container {
    background-color: inherit;
    border-color: inherit;
    color: inherit;
}

.ui-pnotify.stack-top-left,
.ui-pnotify.stack-bottom-left {
    right: 20px;
    left: auto;
}

.ui-pnotify.stack-bottom-right,
.ui-pnotify.stack-bottom-left {
    bottom: 20px;
    top: auto;
}

.ui-pnotify.stack-modal {
    right: 50%;
    left: auto;
    margin-right: -150px;
}

.ui-pnotify.stack-custom-right {
    top: auto;
    right: auto;
    bottom: 200px;
    left: 200px;
}

.ui-pnotify.stack-custom-left {
    top: 200px;
    right: 200px;
    left: auto;
    bottom: auto;
}

.ui-pnotify.stack-custom-top {
    left: 0;
    right: 0;
    top: 0;
}

.ui-pnotify.stack-custom-bottom {
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
}

.ui-pnotify.ui-pnotify-in {
    display: block !important;
}

.ui-pnotify.ui-pnotify-move {
    -webkit-transition: right .5s ease, top .5s ease, left .5s ease, bottom .5s ease;
    -o-transition: right .5s ease, top .5s ease, left .5s ease, bottom .5s ease;
    transition: right .5s ease, top .5s ease, left .5s ease, bottom .5s ease;
}

.ui-pnotify.ui-pnotify-fade-slow {
    -webkit-transition: opacity linear 0.6s;
    -o-transition: opacity linear 0.6s;
    transition: opacity linear 0.6s;
    opacity: 0;
    filter: alpha(opacity=0);
}

    .ui-pnotify.ui-pnotify-fade-slow.ui-pnotify.ui-pnotify-move {
        -webkit-transition: opacity .6s linear, right .5s ease, top .5s ease, left .5s ease, bottom .5s ease;
        -o-transition: opacity .6s linear, right .5s ease, top .5s ease, left .5s ease, bottom .5s ease;
        transition: opacity .6s linear, right .5s ease, top .5s ease, left .5s ease, bottom .5s ease;
    }

.ui-pnotify.ui-pnotify-fade-normal {
    -webkit-transition: opacity linear 0.4s;
    -o-transition: opacity linear 0.4s;
    transition: opacity linear 0.4s;
    opacity: 0;
    filter: alpha(opacity=0);
}

    .ui-pnotify.ui-pnotify-fade-normal.ui-pnotify.ui-pnotify-move {
        -webkit-transition: opacity .4s linear, right .5s ease, top .5s ease, left .5s ease, bottom .5s ease;
        -o-transition: opacity .4s linear, right .5s ease, top .5s ease, left .5s ease, bottom .5s ease;
        transition: opacity .4s linear, right .5s ease, top .5s ease, left .5s ease, bottom .5s ease;
    }

.ui-pnotify.ui-pnotify-fade-fast {
    transition: opacity .2s linear;
    -webkit-transition: opacity linear 0.2s;
    -o-transition: opacity linear 0.2s;
    transition: opacity linear 0.2s;
    opacity: 0;
    filter: alpha(opacity=0);
}

    .ui-pnotify.ui-pnotify-fade-fast.ui-pnotify.ui-pnotify-move {
        -webkit-transition: opacity .2s linear, right .5s ease, top .5s ease, left .5s ease, bottom .5s ease;
        -o-transition: opacity .2s linear, right .5s ease, top .5s ease, left .5s ease, bottom .5s ease;
        transition: opacity .2s linear, right .5s ease, top .5s ease, left .5s ease, bottom .5s ease;
    }

.ui-pnotify.ui-pnotify-fade-in {
    opacity: 1;
    filter: alpha(opacity=100);
}

.ui-pnotify-container {
    padding: 15px 20px;
    height: 100%;
    position: relative;
    right: 0;
    margin: 0;
    border-radius: 3px;
}

    .ui-pnotify-container:after {
        content: " ";
        visibility: hidden;
        display: block;
        height: 0;
        clear: both;
    }

    .ui-pnotify-container.ui-pnotify-sharp {
        border-radius: 0;
    }

.ui-pnotify-title {
    display: block;
    margin-top: 0;
    margin-bottom: 7px;
    font-size: 15px;
}

.ui-pnotify-text {
    display: block;
}

.ui-pnotify-icon {
    display: block;
    float: right;
    line-height: 1;
}

    .ui-pnotify-icon > [class^=icon-] {
        margin-top: 4px;
        margin-left: 15px;
    }

.ui-pnotify-closer,
.ui-pnotify-sticker {
    float: left;
    margin-right: 8px;
    margin-top: 4px;
    line-height: 1;
    outline: 0;
}

.ui-pnotify-modal-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    top: 0;
    right: 0;
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 1;
}

body > .ui-pnotify-modal-overlay {
    position: fixed;
    z-index: 100039;
}

.brighttheme {
    border: 1px solid;
}

.ui-pnotify[class*=bg-] > .brighttheme {
    background-color: inherit;
    border-color: inherit;
    color: inherit;
}

.brighttheme-notice {
    background-color: #FFF3E0;
    border-color: #FF9800;
}

.brighttheme-info {
    background-color: #E3F2FD;
    border-color: #1E88E5;
}

.brighttheme-success {
    background-color: #E8F5E9;
    border-color: #4CAF50;
}

.brighttheme-error {
    background-color: #FBE9E7;
    border-color: #FF5722;
}

.brighttheme-icon-closer,
.brighttheme-icon-sticker {
    position: relative;
    width: 16px;
    height: 16px;
    display: inline-block;
    width: 10px;
    height: 10px;
    outline: 0;
}

    .brighttheme-icon-closer:after,
    .brighttheme-icon-sticker:after {
        content: '';
        font-family: 'Icomoon';
        font-size: 10px;
        display: block;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    .brighttheme-icon-closer:after {
        content: "\ed6a";
    }

    .brighttheme-icon-sticker:after {
        content: "\ee70";
    }

    .brighttheme-icon-sticker.brighttheme-icon-stuck:after {
        content: "\ee75";
    }

.ui-pnotify[class*=alert-styled-] {
    border-width: 0;
    padding: 0;
}

.ui-pnotify.alert-styled-left .brighttheme {
    border-right-width: 44px;
}

.ui-pnotify.alert-styled-left:after {
    right: 0;
}

.ui-pnotify.alert-styled-right .brighttheme {
    border-left-width: 44px;
}

.ui-pnotify.alert-styled-right:after {
    left: 0;
}

.brighttheme .ui-pnotify-action-bar {
    padding-top: 15px;
}

    .brighttheme .ui-pnotify-action-bar textarea,
    .brighttheme .ui-pnotify-action-bar input {
        display: block;
        width: 100%;
        border: 1px solid #ddd;
        background-color: #fff;
        margin-bottom: 15px !important;
        color: #333333;
        padding: 7px 12px;
    }

.ui-pnotify[class*=bg-] .brighttheme .ui-pnotify-action-bar textarea,
.ui-pnotify[class*=bg-] .brighttheme .ui-pnotify-action-bar input {
    border-color: #fff;
    color: #fff;
}

    .ui-pnotify[class*=bg-] .brighttheme .ui-pnotify-action-bar textarea::-moz-placeholder,
    .ui-pnotify[class*=bg-] .brighttheme .ui-pnotify-action-bar input::-moz-placeholder {
        color: #fff;
        opacity: 1;
    }

    .ui-pnotify[class*=bg-] .brighttheme .ui-pnotify-action-bar textarea:-ms-input-placeholder,
    .ui-pnotify[class*=bg-] .brighttheme .ui-pnotify-action-bar input:-ms-input-placeholder {
        color: #fff;
    }

    .ui-pnotify[class*=bg-] .brighttheme .ui-pnotify-action-bar textarea::-webkit-input-placeholder,
    .ui-pnotify[class*=bg-] .brighttheme .ui-pnotify-action-bar input::-webkit-input-placeholder {
        color: #fff;
    }

.ui-pnotify[class*=bg-] .form-control {
    border-bottom-color: #fff;
    color: #fff;
}

    .ui-pnotify[class*=bg-] .form-control::-moz-placeholder {
        color: #fff;
        opacity: 1;
    }

    .ui-pnotify[class*=bg-] .form-control:-ms-input-placeholder {
        color: #fff;
    }

    .ui-pnotify[class*=bg-] .form-control::-webkit-input-placeholder {
        color: #fff;
    }

.ui-pnotify-history-container {
    position: absolute;
    top: 0;
    left: 20px;
    width: 70px;
    border-top: none;
    padding: 0;
    z-index: 10000;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

    .ui-pnotify-history-container.ui-pnotify-history-fixed {
        position: fixed;
    }

    .ui-pnotify-history-container .ui-pnotify-history-header {
        padding: 2px;
        text-align: center;
    }

    .ui-pnotify-history-container button {
        cursor: pointer;
        display: block;
        width: 100%;
    }

    .ui-pnotify-history-container .ui-pnotify-history-pulldown {
        display: block;
        margin: 0 auto;
    }

@media (max-width: 480px) {
    .ui-pnotify-mobile-able.ui-pnotify {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: auto !important;
        -webkit-font-smoothing: antialiased;
        -moz-font-smoothing: antialiased;
        -ms-font-smoothing: antialiased;
        font-smoothing: antialiased;
    }

        .ui-pnotify-mobile-able.ui-pnotify .ui-pnotify-shadow {
            border-bottom-width: 5px;
            -webkit-box-shadow: none;
            box-shadow: none;
        }

        .ui-pnotify-mobile-able.ui-pnotify.stack-top-left,
        .ui-pnotify-mobile-able.ui-pnotify.stack-bottom-left {
            right: 0;
            left: 0;
        }

        .ui-pnotify-mobile-able.ui-pnotify.stack-bottom-right,
        .ui-pnotify-mobile-able.ui-pnotify.stack-bottom-left {
            right: 0;
            left: 0;
            bottom: 0;
            top: auto;
        }

            .ui-pnotify-mobile-able.ui-pnotify.stack-bottom-right .ui-pnotify-shadow,
            .ui-pnotify-mobile-able.ui-pnotify.stack-bottom-left .ui-pnotify-shadow,
            .ui-pnotify-mobile-able.ui-pnotify.stack-bottom-right .ui-pnotify-shadow,
            .ui-pnotify-mobile-able.ui-pnotify.stack-bottom-left .ui-pnotify-shadow {
                border-top-width: 5px;
                border-bottom-width: 1px;
            }

        .ui-pnotify-mobile-able.ui-pnotify.ui-pnotify-nonblock-fade {
            opacity: 0.2;
            filter: alpha(opacity=20);
        }

        .ui-pnotify-mobile-able.ui-pnotify.ui-pnotify-nonblock-hide {
            display: none !important;
        }

    .ui-pnotify-mobile-able .ui-pnotify-container {
        border-radius: 0;
    }
}

.errorupload {
    background: #FAEDEC;
    border: 2px solid #e20039;
    box-shadow: none;
}

.ui-search-table td {
    border: 0px none !important;
}
.ui-jqgrid tr.ui-search-toolbar td > select {
    height: 30px;
    min-width: 60px !important;
}
.success, .success > td, .success > th {
    background-color: var(--jqSelectedRow) /*#d6d3c9 !important*/;
}

.active,
.active > th,
.active > td {
    /*background-color: rgba(0, 0, 0, 0.075) !important;*/
}
.uploader {
    width: 100%;
    position: relative;
    display: table;
}

    .uploader input[type=file] {
        width: 100%;
        margin-top: 0;
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        height: 36px;
        border: 0;
        cursor: pointer;
        z-index: 10;
        opacity: 0;
        filter: alpha(opacity=0);
    }

    .uploader .filename {
        color: #999999;
        height: 36px;
        padding: 7px 12px;
        cursor: pointer;
        width: 100%;
        display: table-cell;
        cursor: default;
        border: 1px solid #ddd;
        border-left: 0;
        background-color: #fff;
        text-align: right;
        word-break: break-word;
        border-bottom-right-radius: 3px;
        border-top-right-radius: 3px;
    }

    .uploader .action {
        height: 36px !important;
        width: 100px !important;
    }

    .uploader .filename {
        height: 36px !important;
    }
    /*bussines card page*/


.businesscard-box {
    display: block;
    height: 315px;
    width: 100%;
    margin-bottom: 20px;
    padding-top: 0;
}

    .businesscard-box .container-card {
        margin-top: -45px;
        border: 1px solid #eee;
        padding: 60px 15px 15px;
        border-radius: 7px;
        height: 260px;
        overflow: hidden;
    }

        .businesscard-box .container-card div:first-child, .card-box .container-card div:first-child {
            height: 160px;
        }

.container-card .card-footer {
    background: #F2F5F7;
    padding: 3px 10px;
    margin: 0 -15px;
    border-top: 1px solid #E6E9ED;
    height:100%
}

.businesscard-box img {
    margin: 0 auto;
    background: #f7f7f7;
    border: 1px solid #E6E9ED;
    border-radius: 50%;
    padding: 2px;
    height: 95px;
    width: 95px;
}

.cardLabel {
    width: auto;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    margin: inherit;
    font-size: 12px;
    font-weight: normal;
}

.cardLabelTitle {
    margin-right: 5px;
    /*font-size: 14px;*/
    width: 100%;
}

.cardLabeHeadlTitle {
    font-size: 14px;
    text-align: center;
    width: 100%;
}

.cardLabeSublTitle {
    color: #1abb9c;
    font-size: 13px;
    text-align: center;
    width: 100%;
}

.P-R {
    padding-right: 0;
}

.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
    width: 100% !important;
}
/*card page*/
.card-box {
    display: block;
    height: auto;
    width: 100%;
    margin-bottom: 20px;
    padding-top: 0;
}

    .card-box .container-card {
        border: 1px solid #eee;
        padding: 25px 15px 15px;
        border-radius: 7px;
        height: 230px;
        overflow: hidden;
    }

        .card-box .container-card .cardLabeSublTitle, .cardLabeHeadlTitle {
            text-align: center;
            /*color: #1abb9c;*/
        }
/* *********  timeline  **************************** */

ul.timeline li {
    position: relative;
    border-bottom: 1px solid #e8e8e8;
    clear: both;
}

.timeline .block {
    margin: 0;
    border-right: 3px solid #e8e8e8;
    overflow: visible;
    padding: 10px 0;
    margin-right: 140px;
}

.timeline.widget {
    min-width: 0;
    max-width: inherit;
}

    .timeline.widget .block {
        margin-right: 5px;
    }

.timeline .tags {
    position: absolute;
    top: 15px;
    right: 0;
    width: 110px;
}

.timeline .tag {
    display: block;
    height: 30px;
    font-size: 13px;
    padding: 8px;
}

    .timeline .tag span {
        display: block;
        overflow: hidden;
        width: 100%;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

.tag {
    line-height: 1;
    background: #3b63b3;
    color: #fff !important;
    border-bottom: 3px solid #233b6c;
}

    .tag:after {
        content: " ";
        height: 30px;
        width: 0;
        position: absolute;
        right: 100%;
        top: 0;
        margin: 0;
        pointer-events: none;
        border-top: 14px solid transparent;
        border-bottom: 14px solid transparent;
        border-right: 11px solid #3b63b3;
    }

    .tag:before {
        content: " ";
        position: absolute;
        left: 85%;
        bottom: -15px;
        margin: 0;
        pointer-events: none;
        border-top: 0px solid #00000000;
        border-bottom: 15px solid #00000000;
        border-right: 0px solid #2e4d8e00;
        border-left: 16px solid #223b6d;
    }

.timeline h2.title {
    position: relative;
    font-size: 12px;
    margin: 0;
}

    .timeline h2.title:before {
        content: "";
        position: absolute;
        right: -24px;
        top: 3px;
        display: block;
        width: 14px;
        height: 14px;
        border: 3px solid #7f8d99;
        border-radius: 14px;
        background: #f9f9f9;
    }

.timeline .byline {
    padding: .25em 0;
}

.byline {
    -webkit-font-smoothing: antialiased;
    font-style: italic;
    font-size: .9375em;
    line-height: 1.3;
    color: #aab6aa;
}

ul.social li {
    border: 0;
}
/* *********  custom accordion  **************************** */

*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

#integration-list {
    width: 100%;
    margin: 0 auto;
    display: table;
}

    #integration-list ul {
        padding: 0;
        margin: 20px 0;
        color: #555;
    }

        #integration-list ul > li {
            list-style: none;
            border-top: 1px solid #ddd;
            display: block;
            padding: 15px;
            overflow: hidden;
        }

        #integration-list ul:last-child {
            border-bottom: 1px solid #ddd;
        }

        #integration-list ul > li:hover {
            background: #efefef;
        }

.expand {
    display: block;
    text-decoration: none;
    color: #555;
    cursor: pointer;
}

    .expand h2 {
        width: 85%;
        float: right;
    }

h2 {
    font-size: 18px;
    font-weight: bold;
}

#left, #right {
    display: table;
}

#sup {
    display: table-cell;
    vertical-align: middle;
    width: 80%;
}

.detail a {
    text-decoration: none;
    color: #C0392B;
    border: 1px solid #C0392B;
    padding: 6px 10px 5px;
    font-size: 13px;
    margin-left: 7px;
}

.detail {
    margin: 10px 0 10px 0px;
    display: none;
    line-height: 22px;
    height: 150px;
}

    .detail span {
        margin: 0;
    }

.right-arrow {
    width: 10px;
    float: left;
    font-weight: bold;
    font-size: 20px;
}

.accordion .panel {
    margin-bottom: 5px;
    border-radius: 0;
    border-bottom: 1px solid #efefef;
}

    .accordion .panel:hover {
        background: #F2F5F7;
    }
/***********************************popup***********************************/
.modal-content {
    background-color: #f7f7f7;
}

.modal-body {
    background-color: var(--Div-cardbody);
}

.bs-callout {
    padding: 10px;
    margin: 0 0 20px;
    border-bottom: 1px solid #eee;
    border-right: 5px solid;
    background: #e6ebf573;
}

.bs-callout-info {
    border-right-color: #3b64b3;
}

input[type="number"] {
    padding-right: 10px !important;
}
.bg-info, .btn-info {
    background-color: #3b66b3 !important;
    border-color: #325b9e !important;
    color: #fff;
}
h5 {
    display: block;
    font-size: 0.83em;
    margin-block-start: 1.67em;
    margin-block-end: 1.67em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
}

/**************** 🎨 THEME VARIABLES ****************/
:root {
    --primary: #2563eb;
    --primary-light: #3b82f6;
    --accent: #7c3aed;
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --bg: #d8e4f1 /*#f8fafc*/;
    --card: #ffffff;
    --border: #e2e8f0;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --text-main-control: #1e293b;
    --text-jqHeader: #afc0cb;
    --jqSelectedRow: #bebae3;
    --text-jqSelectedRow: #afc0cb;
    --Div: rgb(73 127 161) /*rgb(38 72 93)*/;
    --Div-cardheader: #26485d;
    --Div-cardbody: #3884b5;
}

/**************** 🧱 BODY ****************/
body {
    background: var(--bg);
    color: var(--text-main);
}

/**************** 🧾 CARDS ****************/
.med-card,
.ibox-content {
    background: var(--card);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 12px rgba(0,0,0,.05);
    transition: all .2s ease;
}

    .med-card:hover,
    .ibox-content:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 18px rgba(0,0,0,.08);
    }

/**************** 🔘 BUTTONS ****************/
.btn-primary {
/*    background: linear-gradient(135deg, var(--primary), var(--accent));
*/    border: none;
    color: #fff;
    border-radius: 10px;
}

    .btn-primary:hover {
        opacity: 0.9;
    }

/**************** 📊 STATUS COLORS ****************/
.text-success {
    color: var(--success);
}

.text-danger {
    color: var(--danger);
}

.text-warning {
    color: var(--warning);
}

/**************** 🔝 TOP NAVBAR ****************/
.navbar-static-top {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.navbar-top-links li a {
    color: var(--text-main);
    transition: all .2s;
}

    .navbar-top-links li a:hover {
        color:#fff;
    }

/**************** 📂 SIDEBAR ****************/
.navbar-default {
    background: var(--card) /*linear-gradient(180deg, #1e293b, #0f172a)*/;
    /*background-image: url("patterns/header-profile.png");*/
}

.nav > li > a {
    color: #cbd5f5;
    font-weight: 500;
    padding: 12px 18px;
    transition: all .2s;
}

    .nav > li > a:hover {
        background: rgba(255,255,255,0.05);
        color: #fff;
    }

.nav > li.active > a {
    /*background: linear-gradient(135deg, var(--primary), var(--accent));*/
    color: #fff;
    border-radius: 8px;
    margin: 4px;
}

/**************** 🧭 PAGE HEADER ****************/
.bread-div {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 10px 15px;
    margin-bottom: 15px;
}

.breadcrumb {
    background: transparent;
    margin: 0;
}

    .breadcrumb a {
        color: var(--primary);
    }

    .breadcrumb .active {
        color: var(--text-muted);
    }

/**************** 📌 SECOND NAVBAR ****************/
.sticky-nav {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 8px 12px;
    margin-bottom: 15px;
}

    .sticky-nav a {
        color: var(--text-main);
        padding: 6px 12px;
        border-radius: 8px;
        transition: all .2s;
    }

        .sticky-nav a:hover {
            background: #f1f5f9;
            color: var(--primary);
        }

/**************** 🔘 THEME TOGGLE ****************/
#themeToggle {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: all .2s;
}

    #themeToggle:hover {
        color: #fff;
        transform: scale(1.1);
    }

/**************** 🟣 GRADIENT CARD ****************/
.med-gradient {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
}

/**************** 🟢 BADGES ****************/
.badge-med-success {
    background: var(--success);
    color: #fff;
}

.badge-med-warning {
    background: var(--warning);
}

.badge-med-danger {
    background: var(--danger);
    color: #fff;
}

/**************** 🌙 DARK MODE ****************/
body.dark-mode {
    --bg: #0c0c0e;
    --card: /*#1e293b*/ #181a19;
    --border: #334155;
    --text-main: #e2e8f0;
    --text-muted: #94a3b8;
    --text-main-control: #1e293b;
    --primary: #3b82f6;
    --accent: #8b5cf6;
    --text-jqHeader: #afc0cb;
    --jqSelectedRow: #bebae3;
    --text-jqSelectedRow: #afc0cb;
    --Div: rgb(40 91 124) /*rgb(54 125 169)*/;
    --Div-cardheader: #26485d;
    --Div-cardbody: #3884b5;
}

/* Apply Dark */
body.dark-mode {
    background: var(--bg);
    color: var(--text-main);
}

    body.dark-mode .navbar-static-top {
        background: #1e293b;
        border-bottom: 1px solid var(--border);
    }

    body.dark-mode .sticky-nav,
    body.dark-mode .bread-div,
    body.dark-mode .med-card,
    body.dark-mode .ibox-content {
        background: var(--card);
        border-color: var(--border);
    }

    body.dark-mode #themeToggle {
        color: #facc15;
    }