
/*
 * ModernDashboard 1.1.0
 * Kanboard 1.2.25
 * Built against the exact HTML structure supplied in source.html.
 *
 * Safe architecture:
 * - no Kanboard core template overrides
 * - no JavaScript
 * - only official hooks already proven working in v1.0.8
 */

:root {
    --md-bg: #f8fafc;
    --md-card: #ffffff;
    --md-border: #e5e9f0;
    --md-text: #111827;
    --md-muted: #64748b;
    --md-blue: #2563eb;
    --md-green: #22c55e;
    --md-purple: #9333ea;
    --md-orange: #f97316;
    --md-red: #ef4444;
}

/* =========================================================
   GLOBAL / PAGE
   ========================================================= */

html, body {
    background: var(--md-bg);
}

body {
    color: var(--md-text);
}

section.page,
section#main,
section#dashboard {
    background: var(--md-bg);
}

/* =========================================================
   TOP HEADER — exact source markup:
   <header>
     .title-container
     .board-selector-container
     .menus-container
   ========================================================= */

body > header {
    position: relative;
    display: grid !important;
    grid-template-columns: minmax(360px, 1fr) 360px auto;
    align-items: center;
    min-height: 82px !important;
    height: 82px !important;
    padding: 0 24px 0 82px !important;
    box-sizing: border-box;
    border-bottom: 1px solid var(--md-border);
    background: #fff;
}

body > header .title-container {
    display: flex;
    align-items: center;
    min-width: 0;
}

body > header .title-container h1 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 !important;
    padding: 0 !important;
    min-height: 82px;
    font-size: 27px;
    line-height: 1;
    font-weight: 500;
    white-space: nowrap;
}

body > header .title-container .logo {
    font-size: 25px;
}

body > header .title-container .logo a {
    color: #f97316 !important;
    text-decoration: none !important;
}

body > header .title-container .logo a span {
    color: #f97316 !important;
}

body > header .title-container .title {
    color: #111827;
    font-size: 28px;
    font-weight: 500;
}

body > header .board-selector-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

body > header .board-selector-container .js-select-dropdown-autocomplete,
body > header .board-selector-container .select2-container {
    width: 100% !important;
    max-width: 360px;
}

body > header .board-selector-container .select2-selection,
body > header .board-selector-container input {
    min-height: 42px !important;
    border-radius: 10px !important;
}

body > header .menus-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    white-space: nowrap;
}

body > header .menus-container > span.notification > a,
body > header .menus-container > .dropdown > a.dropdown-menu-link-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    min-height: 38px;
    border-radius: 10px;
    color: #1f2937 !important;
    text-decoration: none !important;
}

body > header .menus-container > span.notification > a:hover,
body > header .menus-container > .dropdown > a.dropdown-menu-link-icon:hover {
    background: #f1f5f9;
}

body > header .menus-container .fa-bell {
    font-size: 21px;
}

body > header .header-creation-menu > a .fa-plus {
    font-size: 21px;
}

body > header .avatar-20 {
    width: 38px !important;
    height: 38px !important;
    line-height: 38px !important;
}

body > header .avatar-20 .avatar-letter {
    width: 38px !important;
    height: 38px !important;
    line-height: 38px !important;
    font-size: 18px !important;
}

/* HOME icon inserted by plugin */
.md-home-button {
    position: fixed;
    z-index: 10000;
    left: 20px;
    top: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    box-sizing: border-box;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: var(--md-blue) !important;
    text-decoration: none !important;
}

.md-home-button:hover {
    background: #eff6ff;
}

.md-home-button .fa {
    font-size: 29px;
}

/* =========================================================
   QUICK ACTIONS — exact source markup:
   #main > .page-header > ul > li
   ========================================================= */

#main > .page-header {
    margin: 0 !important;
    padding: 28px 30px 5px !important;
    border: 0 !important;
    background: var(--md-bg);
}

#main > .page-header > ul {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(220px, 1fr));
    gap: 22px;
    margin: 0 !important;
    padding: 0 !important;
}

#main > .page-header > ul > li {
    position: relative;
    display: block !important;
    min-height: 112px;
    margin: 0 !important;
    padding: 25px 18px 18px 98px !important;
    box-sizing: border-box;
    border: 1px solid var(--md-border);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 3px 12px rgba(15, 23, 42, .055);
}

#main > .page-header > ul > li > a {
    display: block;
    color: #111827 !important;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
    text-decoration: none !important;
}

#main > .page-header > ul > li::after {
    position: absolute;
    left: 98px;
    top: 53px;
    color: var(--md-muted);
    font-size: 13px;
    line-height: 1.25;
    font-weight: 400;
    pointer-events: none;
}

#main > .page-header > ul > li:nth-child(1)::after { content: "Create a new project"; }
#main > .page-header > ul > li:nth-child(2)::after { content: "Create for yourself"; }
#main > .page-header > ul > li:nth-child(3)::after { content: "Manage all projects"; }
#main > .page-header > ul > li:nth-child(4)::after { content: "See all activities"; }

/* Colored icon tile */
#main > .page-header > ul > li > a > .fa {
    position: absolute !important;
    left: 18px !important;
    top: 20px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 62px !important;
    height: 62px !important;
    margin: 0 !important;
    border-radius: 15px;
    font-size: 0 !important;
}

#main > .page-header > ul > li > a > .fa::before {
    font-family: FontAwesome;
    font-size: 32px;
    font-weight: normal;
    line-height: 1;
}

#main > .page-header > ul > li:nth-child(1) > a > .fa {
    background: #dbeafe;
    color: var(--md-blue);
}
#main > .page-header > ul > li:nth-child(1) > a > .fa::before {
    content: "\f07b";
}
#main > .page-header > ul > li:nth-child(1) > a > .fa::after {
    content: "+";
    position: absolute;
    right: 7px;
    bottom: 3px;
    font-family: Arial, sans-serif;
    font-size: 25px;
    font-weight: 500;
}

#main > .page-header > ul > li:nth-child(2) > a > .fa {
    background: #dcfce7;
    color: #16a34a;
}
#main > .page-header > ul > li:nth-child(2) > a > .fa::before {
    content: "\f007";
}
#main > .page-header > ul > li:nth-child(2) > a > .fa::after {
    content: "+";
    position: absolute;
    right: 6px;
    bottom: 3px;
    font-family: Arial, sans-serif;
    font-size: 25px;
    font-weight: 500;
}

#main > .page-header > ul > li:nth-child(3) > a > .fa {
    background: #f3e8ff;
    color: var(--md-purple);
}
#main > .page-header > ul > li:nth-child(3) > a > .fa::before {
    content: "\f07b";
}

#main > .page-header > ul > li:nth-child(4) > a > .fa {
    background: #ffedd5;
    color: var(--md-orange);
}
#main > .page-header > ul > li:nth-child(4) > a > .fa::before {
    content: "\f21e";
}

/* =========================================================
   DASHBOARD LAYOUT / SIDEBAR
   exact source markup:
   #dashboard > .sidebar
   #dashboard > .sidebar-content
   ========================================================= */

#dashboard.sidebar-container {
    display: flex !important;
    align-items: stretch;
    min-height: calc(100vh - 227px);
    margin-top: 12px;
    border-top: 1px solid #edf0f4;
}

#dashboard > .sidebar {
    flex: 0 0 320px;
    width: 320px !important;
    min-width: 320px !important;
    padding: 18px 16px 32px !important;
    box-sizing: border-box;
    border-right: 1px solid var(--md-border);
    background: #fff;
}

#dashboard > .sidebar > ul {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none;
}

#dashboard > .sidebar > ul > li {
    position: relative;
    margin: 4px 0 !important;
    padding: 0 !important;
    border: 0 !important;
}

#dashboard > .sidebar > ul > li > a {
    position: relative;
    display: flex !important;
    align-items: center;
    min-height: 50px;
    padding: 10px 14px 10px 52px !important;
    box-sizing: border-box;
    border-radius: 10px;
    color: #1f2937 !important;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 600;
    white-space: nowrap !important;
    overflow: visible !important;
    text-decoration: none !important;
}

#dashboard > .sidebar > ul > li > a:hover {
    background: #f3f6fb;
}

#dashboard > .sidebar > ul > li.active > a,
#dashboard > .sidebar > ul > li.selected > a {
    background: #eaf2ff;
    color: #1557c0 !important;
}

/* Original four sidebar links don't have icons in HTML, add exact icons with CSS */
#dashboard > .sidebar > ul > li:nth-child(1) > a::before,
#dashboard > .sidebar > ul > li:nth-child(2) > a::before,
#dashboard > .sidebar > ul > li:nth-child(3) > a::before,
#dashboard > .sidebar > ul > li:nth-child(4) > a::before {
    position: absolute;
    left: 15px;
    top: 50%;
    width: 27px;
    transform: translateY(-50%);
    font-family: FontAwesome;
    font-size: 24px;
    font-weight: normal;
    line-height: 1;
    text-align: center;
}

#dashboard > .sidebar > ul > li:nth-child(1) > a::before { content: "\f015"; color: #2563eb; }
#dashboard > .sidebar > ul > li:nth-child(2) > a::before { content: "\f07b"; color: #1f2937; }
#dashboard > .sidebar > ul > li:nth-child(3) > a::before { content: "\f046"; color: #1f2937; }
#dashboard > .sidebar > ul > li:nth-child(4) > a::before { content: "\f0ae"; color: #1f2937; }

/* Admin section appended by plugin */
#dashboard .md-admin-divider {
    height: 1px;
    margin: 16px 2px 18px !important;
    background: var(--md-border);
}

#dashboard .md-admin-title {
    margin: 0 14px 8px !important;
    color: #7c8594;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .07em;
}

#dashboard .md-admin-item > a {
    padding-left: 14px !important;
    gap: 13px;
}

#dashboard .md-admin-item > a .fa {
    width: 28px;
    min-width: 28px;
    margin-right: 8px;
    font-size: 23px;
    text-align: center;
}

#dashboard .md-admin-dashboard .fa { color: #2563eb; }
#dashboard .md-admin-profile .fa { color: #0ea5e9; }
#dashboard .md-admin-projects .fa { color: #22c55e; }
#dashboard .md-admin-users .fa { color: #f97316; }
#dashboard .md-admin-groups .fa { color: #8b5cf6; }
#dashboard .md-admin-plugins .fa { color: #d946ef; }
#dashboard .md-admin-settings .fa { color: #3b82f6; }
#dashboard .md-admin-docs .fa { color: #f59e0b; }
#dashboard .md-admin-logout .fa { color: #ef4444; }

#dashboard > .sidebar-content {
    flex: 1 1 auto;
    min-width: 0;
    width: auto !important;
    padding: 24px 30px 48px !important;
    box-sizing: border-box;
    background: var(--md-bg);
}

/* =========================================================
   SEARCH
   ========================================================= */

#dashboard .filter-box {
    margin-bottom: 24px;
}

#dashboard .filter-box .input-addon {
    min-height: 42px;
}

#dashboard .filter-box input[type="text"] {
    min-height: 42px;
    padding-left: 15px;
    border-color: #d8dee8;
    border-radius: 9px 0 0 9px;
    background: #fff;
    font-size: 14px;
}

#dashboard .filter-box .input-addon-item {
    min-width: 56px;
    border-radius: 0 9px 9px 0;
}

/* =========================================================
   PROJECTS
   exact source markup:
   .filter-box + .table-list
   .table-list-header
   four .table-list-row
   ========================================================= */

#dashboard .sidebar-content > .filter-box + .table-list {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    overflow: visible !important;
    margin-top: 6px;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

#dashboard .sidebar-content > .filter-box + .table-list > .table-list-header {
    grid-column: 1 / -1;
    min-height: 34px;
    margin: 0 !important;
    padding: 0 2px 8px !important;
    border: 0 !important;
    background: transparent !important;
}

#dashboard .sidebar-content > .filter-box + .table-list .table-list-header-count {
    color: #111827;
    font-size: 17px;
    font-weight: 750;
}

#dashboard .sidebar-content > .filter-box + .table-list .table-list-header-menu {
    color: #2563eb;
    font-size: 13px;
}

/* Cards */
#dashboard .sidebar-content > .filter-box + .table-list > .table-list-row {
    position: relative;
    display: block !important;
    min-width: 0;
    min-height: 238px;
    padding: 22px 18px 48px 92px !important;
    box-sizing: border-box;
    border: 1px solid #e3e8ef !important;
    border-left-width: 2px !important;
    border-radius: 14px !important;
    background: #fff !important;
    box-shadow: 0 3px 12px rgba(15, 23, 42, .05);
}

#dashboard .sidebar-content > .filter-box + .table-list > .table-list-row:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, .09);
}

/* Project icon circles */
#dashboard .sidebar-content > .filter-box + .table-list > .table-list-row::before {
    position: absolute;
    left: 20px;
    top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    font-family: FontAwesome;
    font-size: 28px;
    font-weight: normal;
}

#dashboard .sidebar-content > .filter-box + .table-list > .table-list-row:nth-child(2) {
    border-left-color: #3b82f6 !important;
}
#dashboard .sidebar-content > .filter-box + .table-list > .table-list-row:nth-child(2)::before {
    content: "\f072";
    color: #2563eb;
    background: #dbeafe;
}

#dashboard .sidebar-content > .filter-box + .table-list > .table-list-row:nth-child(3) {
    border-left-color: #22c55e !important;
}
#dashboard .sidebar-content > .filter-box + .table-list > .table-list-row:nth-child(3)::before {
    content: "\f015";
    color: #16a34a;
    background: #dcfce7;
}

#dashboard .sidebar-content > .filter-box + .table-list > .table-list-row:nth-child(4) {
    border-left-color: #a855f7 !important;
}
#dashboard .sidebar-content > .filter-box + .table-list > .table-list-row:nth-child(4)::before {
    content: "\f0fb";
    color: #9333ea;
    background: #f3e8ff;
}

#dashboard .sidebar-content > .filter-box + .table-list > .table-list-row:nth-child(5) {
    border-left-color: #f97316 !important;
}
#dashboard .sidebar-content > .filter-box + .table-list > .table-list-row:nth-child(5)::before {
    content: "\f024";
    color: #f97316;
    background: #ffedd5;
}

/* Header inside each project card */
#dashboard .sidebar-content > .filter-box + .table-list > .table-list-row > div:first-child {
    min-width: 0;
}

#dashboard .sidebar-content > .filter-box + .table-list .dropdown {
    display: inline-block;
}

#dashboard .sidebar-content > .filter-box + .table-list .table-list-title {
    display: block;
    max-width: 100%;
    margin-top: 7px;
    overflow: hidden;
    color: #111827;
    font-size: 17px;
    line-height: 1.3;
    font-weight: 750;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#dashboard .sidebar-content > .filter-box + .table-list .table-list-title a {
    color: #111827 !important;
    text-decoration: none !important;
}

/* The exact HTML alternates:
   strong, small, strong, small, strong, small, strong, small
   Place them into four columns / two rows like the mockup. */
#dashboard .sidebar-content > .filter-box + .table-list .table-list-details {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 40px;
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: 20px 18px;
    column-gap: 5px;
    row-gap: 2px;
    margin: 0 !important;
    text-align: center;
}

#dashboard .sidebar-content > .filter-box + .table-list .table-list-details strong,
#dashboard .sidebar-content > .filter-box + .table-list .table-list-details small {
    display: block !important;
    margin: 0 !important;
    min-width: 0;
}

#dashboard .sidebar-content > .filter-box + .table-list .table-list-details strong {
    color: #111827;
    font-size: 15px;
    line-height: 20px;
    font-weight: 700;
}

#dashboard .sidebar-content > .filter-box + .table-list .table-list-details small {
    overflow: hidden;
    color: #64748b;
    font-size: 10.5px;
    line-height: 16px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* force exact grid placement */
#dashboard .sidebar-content > .filter-box + .table-list .table-list-details > strong:nth-of-type(1) { grid-column: 1; grid-row: 1; }
#dashboard .sidebar-content > .filter-box + .table-list .table-list-details > strong:nth-of-type(2) { grid-column: 2; grid-row: 1; }
#dashboard .sidebar-content > .filter-box + .table-list .table-list-details > strong:nth-of-type(3) { grid-column: 3; grid-row: 1; }
#dashboard .sidebar-content > .filter-box + .table-list .table-list-details > strong:nth-of-type(4) { grid-column: 4; grid-row: 1; }

#dashboard .sidebar-content > .filter-box + .table-list .table-list-details > small:nth-of-type(1) { grid-column: 1; grid-row: 2; }
#dashboard .sidebar-content > .filter-box + .table-list .table-list-details > small:nth-of-type(2) { grid-column: 2; grid-row: 2; }
#dashboard .sidebar-content > .filter-box + .table-list .table-list-details > small:nth-of-type(3) { grid-column: 3; grid-row: 2; }
#dashboard .sidebar-content > .filter-box + .table-list .table-list-details > small:nth-of-type(4) { grid-column: 4; grid-row: 2; }

/* progress bar visual */
#dashboard .sidebar-content > .filter-box + .table-list > .table-list-row::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 16px;
    height: 6px;
    border-radius: 999px;
}

#dashboard .sidebar-content > .filter-box + .table-list > .table-list-row:nth-child(2)::after {
    background: linear-gradient(to right, #2563eb 0 52%, #e8edf3 52% 100%);
}
#dashboard .sidebar-content > .filter-box + .table-list > .table-list-row:nth-child(3)::after {
    background: linear-gradient(to right, #22c55e 0 52%, #e8edf3 52% 100%);
}
#dashboard .sidebar-content > .filter-box + .table-list > .table-list-row:nth-child(4)::after {
    background: linear-gradient(to right, #9333ea 0 72%, #e8edf3 72% 100%);
}
#dashboard .sidebar-content > .filter-box + .table-list > .table-list-row:nth-child(5)::after {
    background: linear-gradient(to right, #f97316 0 88%, #e8edf3 88% 100%);
}

/* =========================================================
   TASKS
   exact source markup:
   .page-header
   followed by .table-list
   ========================================================= */

#dashboard .sidebar-content > .page-header {
    margin: 30px 0 10px !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
}

#dashboard .sidebar-content > .page-header h2 {
    margin: 0 !important;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 750;
    text-transform: uppercase;
}

#dashboard .sidebar-content > .page-header h2 a {
    color: #111827 !important;
    text-decoration: none !important;
}

#dashboard .sidebar-content > .page-header + .table-list {
    overflow: hidden;
    border: 1px solid #e3e8ef;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 3px 12px rgba(15, 23, 42, .05);
}

#dashboard .sidebar-content > .page-header + .table-list > .table-list-header {
    min-height: 34px;
    padding: 7px 12px !important;
    border-bottom: 1px solid #e8ebf0;
    background: #fbfcfe;
}

#dashboard .sidebar-content > .page-header + .table-list .table-list-header-count {
    color: #64748b;
    font-size: 13px;
}

#dashboard .sidebar-content > .page-header + .table-list > .table-list-row {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
        "title icons"
        "details icons"
        "avatars icons";
    align-items: center;
    min-height: 98px;
    padding: 15px 18px 14px 22px !important;
    border-bottom: 1px solid #e8ebf0 !important;
    background: #fff !important;
}

#dashboard .sidebar-content > .page-header + .table-list > .table-list-row:last-child {
    border-bottom: 0 !important;
}

#dashboard .sidebar-content > .page-header + .table-list > .table-list-row > div:first-child {
    grid-area: title;
    min-width: 0;
}

#dashboard .sidebar-content > .page-header + .table-list > .table-list-row > .table-list-details {
    grid-area: details;
    margin-top: 5px;
    color: #64748b;
    font-size: 13px;
}

#dashboard .sidebar-content > .page-header + .table-list > .table-list-row > .task-list-avatars {
    grid-area: avatars;
    margin-top: 7px;
}

#dashboard .sidebar-content > .page-header + .table-list > .table-list-row > .task-list-icons {
    grid-area: icons;
    align-self: center;
    min-width: 350px;
    color: #64748b;
    font-size: 12px;
    text-align: right;
}

#dashboard .sidebar-content > .page-header + .table-list .table-list-title {
    font-size: 15px;
    line-height: 1.3;
    font-weight: 750;
}

#dashboard .sidebar-content > .page-header + .table-list .table-list-title a {
    color: #111827 !important;
    text-decoration: none !important;
}

#dashboard .sidebar-content > .page-header + .table-list .task-list-icons > span,
#dashboard .sidebar-content > .page-header + .table-list .task-list-icons > div {
    margin-left: 10px;
}

#dashboard .sidebar-content > .page-header + .table-list .task-list-icons .fa {
    font-size: 14px;
}

/* task left color strips retained from Kanboard */
#dashboard .sidebar-content > .page-header + .table-list > .table-list-row.color-green {
    border-left: 4px solid #22c55e !important;
}
#dashboard .sidebar-content > .page-header + .table-list > .table-list-row.color-blue {
    border-left: 4px solid #60a5fa !important;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1450px) {
    body > header {
        grid-template-columns: minmax(340px, 1fr) 310px auto;
    }

    #main > .page-header > ul {
        grid-template-columns: repeat(2, minmax(240px, 1fr));
    }

    #dashboard .sidebar-content > .filter-box + .table-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    body > header {
        grid-template-columns: 1fr auto;
        min-height: 72px !important;
        height: auto !important;
        padding-left: 72px !important;
    }

    body > header .board-selector-container {
        display: none;
    }

    .md-home-button {
        left: 14px;
        top: 14px;
    }

    #dashboard.sidebar-container {
        display: block !important;
    }

    #dashboard > .sidebar {
        width: 100% !important;
        min-width: 0 !important;
        border-right: 0;
        border-bottom: 1px solid var(--md-border);
    }

    #dashboard .sidebar-content > .filter-box + .table-list {
        grid-template-columns: 1fr;
    }

    #dashboard .sidebar-content > .page-header + .table-list > .table-list-row {
        grid-template-columns: 1fr;
        grid-template-areas:
            "title"
            "details"
            "avatars"
            "icons";
    }

    #dashboard .sidebar-content > .page-header + .table-list > .table-list-row > .task-list-icons {
        min-width: 0;
        margin-top: 8px;
        text-align: left;
    }
}


/* v1.1.1 — universal Logout directly below My subtasks */
#dashboard > .sidebar > ul > li.md-user-logout {
    margin: 4px 0 14px !important;
    padding: 0 0 14px !important;
    border-bottom: 1px solid var(--md-border) !important;
}

#dashboard > .sidebar > ul > li.md-user-logout > a {
    display: flex !important;
    align-items: center;
    min-height: 50px;
    padding: 10px 14px !important;
    box-sizing: border-box;
    border-radius: 10px;
    color: #1f2937 !important;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 600;
    white-space: nowrap !important;
    text-decoration: none !important;
}

#dashboard > .sidebar > ul > li.md-user-logout > a:hover {
    background: #fef2f2;
    color: #dc2626 !important;
}

#dashboard > .sidebar > ul > li.md-user-logout > a .fa {
    width: 28px;
    min-width: 28px;
    margin-right: 21px;
    color: #ef4444;
    font-size: 23px;
    text-align: center;
}
