/**======================================================================
=========================================================================
Template Name: Dashboard Bootstrap 5 Admin Template
Author: WorkDo
Support: [support link]
File: style.css
=========================================================================
=================================================================================== */
 /* CSS */

 /* Base: make it scrollable */
 .scrollable {
     height: 600px;
     overflow-y: auto;
     position: relative;
     scroll-behavior: smooth;
     -webkit-overflow-scrolling: touch;
 }

 /* ---------------------------
   WebKit (Chrome, Edge, Safari)
   --------------------------- */
 .scrollable::-webkit-scrollbar {
     width: 0;
     /* hide by default */
     height: 0;
     transition: width .18s ease, height .18s ease;
 }

 /* On hover — reveal a custom thumb/track */
 .scrollable:hover::-webkit-scrollbar {
     width: 10px;
     /* visible width on hover */
     height: 10px;
 }

 .scrollable::-webkit-scrollbar-track {
     background: transparent;
     /* track background */
     border-radius: 8px;
 }

 .scrollable::-webkit-scrollbar-thumb {
     background-clip: padding-box;
     border-radius: 8px;
     border: 2px solid transparent;
     /* space around thumb */
     background-color: rgb(199, 207, 237);
     /* thumb color */
 }

 /* Optional: change thumb on hover for better feedback */
 .scrollable:hover::-webkit-scrollbar-thumb:hover {
     background-color: rgb(199, 207, 237);
 }

 /* ---------------------------
   Firefox
   --------------------------- */
 /* Hide scrollbar by default in Firefox */
 .scrollable {
     height: 600px;
     overflow-y: scroll;
     position: relative;
     -webkit-overflow-scrolling: touch;
 }

 /* Show thin scrollbar on hover in Firefox */
 .scrollable:hover {
     scrollbar-width: thin;
     /* set thumb and track colors (thumb first, track second) */
     scrollbar-color: rgba(0, 0, 0, 0.35) transparent;
 }

 /* ---------------------------
   Legacy IE/Edge (optional)
   --------------------------- */
 .scrollable {
     -ms-overflow-style: none;
     /* hide in older IE/Edge */
 }
.pct-customizer {
    position: fixed;
    right: -360px;
    top: 160px;
    z-index: 1025;
    transition: all 0.15s ease-in-out;
}

.pct-customizer.active {
    right: 0;
}

.pct-customizer.active .pct-c-btn {
    padding-right: 0;
}

.pct-customizer .pct-c-btn {
    display: block;
    position: absolute;
    right: 100%;
    top: 0;
    transition: all 0.15s ease-in-out;
}

.pct-customizer .pct-c-btn .btn {
    padding: 17.5px 17.5px;
    display: block;
    border-radius: 8px 0 0 8px;
    box-shadow: 0 9px 9px -1px rgba(81, 69, 157, 0.3);
}

.pct-customizer .pct-c-btn .btn + .btn {
    margin-top: 8px;
}

.pct-customizer .pct-c-content {
    width: 360px;
    position: relative;
    top: 0;
    right: 0;
    background: #fff;
    overflow: hidden;
    border-radius: 0 0 0 4px;
    box-shadow: -9px 0 18px -1px rgba(69, 90, 100, 0.1);
}

.pct-customizer .pct-c-content .pct-header {
    padding: 20px 30px;
    border-bottom: 1px solid #f1f1f1;
}

.pct-customizer .pct-c-content .pct-body {
    padding: 20px 30px;
}

@media (max-width: 1024px) {
    .pct-customizer {
        display: none;
    }
}

.doc-img,
.theme-color {
    display: block;
    position: relative;
    padding: 0;
    margin-top: 10px;
    margin-bottom: 10px;
}

.doc-img > a,
  .theme-color > a {
    position: relative;
    width: 35px;
    height: 25px;
    border-radius: 3px;
    display: inline-block;
    background: #f8f9fd;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.28);
}

.doc-img > a + a,
    .theme-color > a + a {
    margin-left: 5px;
}

.doc-img > a span,
    .theme-color > a span {
    width: 100%;
    position: absolute;
}

.doc-img > a span:after, .doc-img > a span:before,
      .theme-color > a span:after,
      .theme-color > a span:before {
    content: "";
    height: 100%;
    position: absolute;
}

.doc-img > a span:before,
      .theme-color > a span:before {
    width: 32%;
    left: 0;
    background: #1c232f;
}

.doc-img > a span:after,
      .theme-color > a span:after {
    width: 70%;
    right: 0;
    background: #f8f9fd;
}

.doc-img > a > span:nth-child(1),
    .theme-color > a > span:nth-child(1) {
    height: 40%;
    top: 0;
}

.doc-img > a > span:nth-child(1):after,
      .theme-color > a > span:nth-child(1):after {
    background: #fff;
}

.doc-img > a > span:nth-child(2),
    .theme-color > a > span:nth-child(2) {
    height: 66%;
    bottom: 0;
}

.doc-img.header-color > a[data-value="bg-primary"] > span:nth-child(1):after,
  .theme-color.header-color > a[data-value="bg-primary"] > span:nth-child(1):after {
    background: #51459d;
}

.doc-img.header-color > a[data-value="bg-success"] > span:nth-child(1):after,
  .theme-color.header-color > a[data-value="bg-success"] > span:nth-child(1):after {
    background: #6fd943;
}

.doc-img.header-color > a[data-value="bg-info"] > span:nth-child(1):after,
  .theme-color.header-color > a[data-value="bg-info"] > span:nth-child(1):after {
    background: #3ec9d6;
}

.doc-img.header-color > a[data-value="bg-warning"] > span:nth-child(1):after,
  .theme-color.header-color > a[data-value="bg-warning"] > span:nth-child(1):after {
    background: #ffa21d;
}

.doc-img.header-color > a[data-value="bg-danger"] > span:nth-child(1):after,
  .theme-color.header-color > a[data-value="bg-danger"] > span:nth-child(1):after {
    background: #ff3a6e;
}

.doc-img.header-color > a[data-value="bg-dark"] > span:nth-child(1):after,
  .theme-color.header-color > a[data-value="bg-dark"] > span:nth-child(1):after {
    background: #1c232f;
}

.doc-img.brand-color > a[data-value="bg-primary"] > span:nth-child(1):before,
  .theme-color.brand-color > a[data-value="bg-primary"] > span:nth-child(1):before {
    background: #51459d;
}

.doc-img.brand-color > a[data-value="bg-success"] > span:nth-child(1):before,
  .theme-color.brand-color > a[data-value="bg-success"] > span:nth-child(1):before {
    background: #6fd943;
}

.doc-img.brand-color > a[data-value="bg-info"] > span:nth-child(1):before,
  .theme-color.brand-color > a[data-value="bg-info"] > span:nth-child(1):before {
    background: #3ec9d6;
}

.doc-img.brand-color > a[data-value="bg-warning"] > span:nth-child(1):before,
  .theme-color.brand-color > a[data-value="bg-warning"] > span:nth-child(1):before {
    background: #ffa21d;
}

.doc-img.brand-color > a[data-value="bg-danger"] > span:nth-child(1):before,
  .theme-color.brand-color > a[data-value="bg-danger"] > span:nth-child(1):before {
    background: #ff3a6e;
}

.doc-img.brand-color > a[data-value="bg-dark"] > span:nth-child(1):before,
  .theme-color.brand-color > a[data-value="bg-dark"] > span:nth-child(1):before {
    background: #1c232f;
}

.doc-img.themes-color > a[data-value="theme-1"],
  .theme-color.themes-color > a[data-value="theme-1"] {
    background: linear-gradient(141.55deg, #0CAF60 3.46%, #0CAF60 99.86%), #0CAF60;
}

.doc-img.themes-color > a[data-value="theme-3"],
  .theme-color.themes-color > a[data-value="theme-3"] {
    background: linear-gradient(141.55deg, #6FD943 3.46%, #6FD943 99.86%), #6FD943;
}

.doc-img.themes-color > a[data-value="theme-2"],
  .theme-color.themes-color > a[data-value="theme-2"] {
    background: linear-gradient(141.55deg, #584ED2 3.46%, #584ED2 99.86%), #584ED2;
}

.doc-img.themes-color > a[data-value="theme-4"],
  .theme-color.themes-color > a[data-value="theme-4"] {
    background: linear-gradient(141.55deg, #145388 3.46%, #145388 99.86%), #145388;
}

.doc-img.themes-color > a[data-value="theme-5"],
  .theme-color.themes-color > a[data-value="theme-5"] {
    background: linear-gradient(141.55deg, #B9406B 3.46%, #B9406B 99.86%), #B9406B;
}

.doc-img.themes-color > a[data-value="theme-6"],
  .theme-color.themes-color > a[data-value="theme-6"] {
    background: linear-gradient(141.55deg, #008ECC 3.46%, #008ECC 99.86%), #008ECC;
}

.doc-img.themes-color > a[data-value="theme-7"],
  .theme-color.themes-color > a[data-value="theme-7"] {
    background: linear-gradient(141.55deg, #922C88 3.46%, #922C88 99.86%), #922C88;
}

.doc-img.themes-color > a[data-value="theme-8"],
  .theme-color.themes-color > a[data-value="theme-8"] {
    background: linear-gradient(141.55deg, #C0A145 3.46%, #C0A145 99.86%), #C0A145;
}

.doc-img.themes-color > a[data-value="theme-9"],
  .theme-color.themes-color > a[data-value="theme-9"] {
    background: linear-gradient(141.55deg, #48494B 3.46%, #48494B 99.86%), #48494B;
}

.doc-img.themes-color > a[data-value="theme-10"],
  .theme-color.themes-color > a[data-value="theme-10"] {
    background: linear-gradient(141.55deg, #0C7785 3.46%, #0C7785 99.86%), #0C7785;
}

.doc-img > a {
    width: 100px;
    height: 65px;
}

.dash-header[class*="bg-"], .dash-header.dark-header {
    box-shadow: none;
    background: #1c232f;
    color: #fff;
}

@media (min-width: 1025px) {
    .dash-header[class*="bg-"] .dash-head-link, .dash-header.dark-header .dash-head-link {
        color: #fff;
    }

    .dash-header[class*="bg-"] .dash-head-link i, .dash-header.dark-header .dash-head-link i {
        color: #fff;
    }

    .dash-header[class*="bg-"] .dash-head-link .material-icons-two-tone, .dash-header.dark-header .dash-head-link .material-icons-two-tone {
        background-color: #fff;
    }

    .dash-header[class*="bg-"] .dash-head-link.active, .dash-header[class*="bg-"] .dash-head-link:active, .dash-header[class*="bg-"] .dash-head-link:focus, .dash-header[class*="bg-"] .dash-head-link:hover, .dash-header.dark-header .dash-head-link.active, .dash-header.dark-header .dash-head-link:active, .dash-header.dark-header .dash-head-link:focus, .dash-header.dark-header .dash-head-link:hover {
        color: #fff;
        background: rgba(255, 255, 255, 0.15);
    }

    .dash-header[class*="bg-"] .dash-head-link.active .material-icons-two-tone, .dash-header[class*="bg-"] .dash-head-link:active .material-icons-two-tone, .dash-header[class*="bg-"] .dash-head-link:focus .material-icons-two-tone, .dash-header[class*="bg-"] .dash-head-link:hover .material-icons-two-tone, .dash-header.dark-header .dash-head-link.active .material-icons-two-tone, .dash-header.dark-header .dash-head-link:active .material-icons-two-tone, .dash-header.dark-header .dash-head-link:focus .material-icons-two-tone, .dash-header.dark-header .dash-head-link:hover .material-icons-two-tone {
        background-color: #fff;
    }

    .dash-header[class*="bg-"] .dash-head-link .user-desc, .dash-header.dark-header .dash-head-link .user-desc {
        color: rgba(255, 255, 255, 0.7);
    }
}

.dash-sidebar.light-sidebar {
    background: #fff;
    box-shadow: 0 1px 20px 0 rgba(69, 90, 100, 0.08);
}

.dash-sidebar.light-sidebar .dash-caption {
    color: #333333;
}

.dash-sidebar.light-sidebar .dash-navbar > .dash-item > .dash-link {
    border-radius: 12px;
    margin-left: 15px;
    margin-right: 15px;
    padding: 7px 10px 7px 7px;
}

.dash-sidebar.light-sidebar .dash-link {
    color: #333333;
    font-size: 14px;
}

.dash-sidebar.light-sidebar .dash-link .dash-micon {
    background-color: #fff;
    box-shadow: -3px 4px 23px rgba(0, 0, 0, 0.1);
}

.dash-sidebar.light-sidebar .dash-link .dash-micon i,
      .dash-sidebar.light-sidebar .dash-link .dash-micon svg {
    color: #525b69;
    stroke: #525b69;
    fill: #f2f2f2;
}

.dash-sidebar.light-sidebar .dash-link .dash-micon .material-icons-two-tone {
    background-color: #525b69;
}

.dash-sidebar.light-sidebar .dash-link .dash-arrow {
    margin-top: 6px;
}

.dash-sidebar.light-sidebar .dash-link:active, .dash-sidebar.light-sidebar .dash-link:focus, .dash-sidebar.light-sidebar .dash-link:hover {
    color: #51459d;
}

.dash-sidebar.light-sidebar .dash-submenu .dash-link .dash-arrow {
    margin-top: 2px;
}

.dash-sidebar.light-sidebar .dash-item.active > .dash-link,
  .dash-sidebar.light-sidebar .dash-item:hover > .dash-link {
    color: #51459d;
}

.dash-sidebar.light-sidebar .dash-item.active > .dash-link i,
    .dash-sidebar.light-sidebar .dash-item:hover > .dash-link i {
    color: #51459d;
}

.dash-sidebar.light-sidebar .dash-item.active > .dash-link .dash-micon i.material-icons-two-tone,
    .dash-sidebar.light-sidebar .dash-item:hover > .dash-link .dash-micon i.material-icons-two-tone {
    background-color: #51459d;
}

.dash-sidebar.light-sidebar .dash-navbar > .dash-item.active > .dash-link {
    font-weight: 700;
}

.dash-sidebar.light-sidebar .dash-navbar > .dash-item.active > .dash-link, .dash-sidebar.light-sidebar .dash-navbar > .dash-item:focus > .dash-link, .dash-sidebar.light-sidebar .dash-navbar > .dash-item:hover > .dash-link {
    box-shadow: -6px 11px 19px rgba(0, 0, 0, 0.04);
    background: #fff;
    color: #333333;
}

.minimenu .dash-sidebar.light-sidebar .dash-navbar > .dash-item > .dash-link {
    padding: 20px 25px;
    margin-left: 0;
    margin-right: 0;
    border-radius: 0;
}

.minimenu .dash-sidebar.light-sidebar .dash-item .dash-item:hover > .dash-link {
    background: transparent;
}

.minimenu .dash-sidebar.light-sidebar .dash-submenu {
    box-shadow: 0 1px 20px 0 rgba(69, 90, 100, 0.08);
    background: #fff;
}

.dash-horizontal .topbar.light-sidebar {
    background: #fff;
    box-shadow: 0 1px 20px 0 rgba(69, 90, 100, 0.08);
}

.dash-horizontal .topbar.light-sidebar .dash-link {
    color: #333333;
}

.dash-horizontal .topbar.light-sidebar .dash-link:active, .dash-horizontal .topbar.light-sidebar .dash-link:focus, .dash-horizontal .topbar.light-sidebar .dash-link:hover {
    color: #51459d;
}

.auth-wrapper ~ .pct-customizer {
    display: none;
}
.dash-submenu>.dash-item>.dash-link{
    font-size: 14px;
    font-weight: 500 !important;
}

/* ==========================================================================
   Global UI taste overrides (all themes)
   Keep this block at the end of the file so it wins the cascade.
   ========================================================================== */

:root {
    --ui-border-soft: var(--color-border-soft, #eef2f7);
}

/* Tie the global accent to the active theme/custom color (body-scoped so it updates). */
body {
    --ui-accent: var(--color-customColor, #51459d);
    /* Fallback for browsers that don't support `color-mix()`. */
    --ui-accent-soft: rgba(81, 69, 157, 0.14);
    --ui-border-soft: var(--color-border-soft, #eef2f7);
}

@supports (background: color-mix(in srgb, #000 10%, #fff)) {
    body {
        --ui-accent-soft: color-mix(in srgb, var(--ui-accent) 14%, #ffffff);
    }
}

/* Theme accents: map preset theme colors to the shared accent variable. */
body.theme-1 {
    --color-customColor: #0CAF60;
}

body.theme-2 {
    --color-customColor: #584ED2;
}

body.theme-3 {
    --color-customColor: #6FD943;
}

body.theme-4 {
    --color-customColor: #145388;
}

body.theme-5 {
    --color-customColor: #B9406B;
}

body.theme-6 {
    --color-customColor: #008ECC;
}

body.theme-7 {
    --color-customColor: #922C88;
}

body.theme-8 {
    --color-customColor: #C0A145;
}

body.theme-9 {
    --color-customColor: #48494B;
}

body.theme-10 {
    --color-customColor: #0C7785;
}

/* Card header: remove the default left accent bar (h5:after). */
.card .card-header:not(.border-0) h5:after,
.card .card-header:not(.border-0) .h5:after {
    content: none !important;
    display: none !important;
}

/* Card header: "tab" taste (highlight only the title text). */
.card .card-header h5,
.card .card-header .h5 {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: var(--ui-accent-soft, rgba(81, 69, 157, 0.14));
    color: var(--ui-accent);
    margin-bottom: 0;
}

/* Header: keep avatar container clean behind the image. */
.dash-header .drp-company .theme-avtar {
    background: transparent !important;
    color: var(--ui-accent);
}

/* Header: unify control sizing (search, bell, support, language, plus, company dropdown). */
:root {
    --ui-header-control-h: 38px;
    --ui-header-control-radius: 12px;
    --ui-header-control-pad-x: 12px;
}

.dash-header .header-wrapper {
    /* Keep original header height; avoid pushing content under the absolute-positioned header. */
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.dash-header .mega-menu {
    margin-top: 40px;
    border-radius: var(--ui-header-control-radius);
}

.dash-header .header-wrapper .dash-h-item {
    display: flex;
    align-items: center;
}

/* Desktop: hide the sidebar toggle (hamburger) to reduce clutter. */
@media (min-width: 992px) {
    .dash-header .mob-hamburger {
        display: none !important;
    }
}

/* Apply consistent pill sizing to top header controls (avoid the mobile hamburger). */
.dash-header .header-wrapper .dash-h-item:not(.mob-hamburger) > .dash-head-link,
.dash-header .header-wrapper .dash-h-item:not(.mob-hamburger) > .btn {
    min-height: var(--ui-header-control-h);
    height: var(--ui-header-control-h);
    border-radius: var(--ui-header-control-radius) !important;
    padding: 0 var(--ui-header-control-pad-x) !important;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    line-height: 1;
}

/* Company dropdown needs a little more horizontal room for avatar + name. */
.dash-header .header-wrapper .drp-company > .dash-head-link {
    padding-left: 14px !important;
    padding-right: 14px !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

.dash-header .header-wrapper .drp-company > .dash-head-link:hover,
.dash-header .header-wrapper .drp-company > .dash-head-link:focus,
.dash-header .header-wrapper .drp-company > .dash-head-link:active,
.dash-header .header-wrapper .drp-company.show > .dash-head-link {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

/* Make the avatar itself match the control height. */
.dash-header .drp-company .theme-avtar {
    width: calc(var(--ui-header-control-h) - 6px);
    height: calc(var(--ui-header-control-h) - 6px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.dash-header .drp-company .theme-avtar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dash-header .drp-company .theme-avtar .theme-avtar-fallback {
    width: 100%;
    height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--ui-header-control-radius);
    background: var(--ui-accent);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.02em;
}

/* Search: remove inconsistent margins and normalize input/button radius & height. */
.dash-header .dash-header-search {
    margin: 0 !important;
    /* Give breathing room before the notification bell. */
    margin-right: 12px !important;
}

.dash-header .dash-header-search-form .input-group {
    height: var(--ui-header-control-h);
}

.dash-header .dash-header-search-form .form-control,
.dash-header .dash-header-search-form .btn {
    height: var(--ui-header-control-h) !important;
    border-radius: 0 !important;
}

.dash-header .dash-header-search-form .form-control {
    border-top-left-radius: var(--ui-header-control-radius) !important;
    border-bottom-left-radius: var(--ui-header-control-radius) !important;
}

.dash-header .dash-header-search-form .btn {
    border-top-right-radius: var(--ui-header-control-radius) !important;
    border-bottom-right-radius: var(--ui-header-control-radius) !important;
    padding-left: 14px !important;
    padding-right: 14px !important;
}

@media (max-width: 768px) {
    :root {
        --ui-header-control-h: 36px;
        --ui-header-control-radius: 11px;
    }
}

/* Ensure language switcher matches the same height/radius even if theme CSS overrides it. */
.dash-header .drp-language > .dash-head-link {
    min-height: var(--ui-header-control-h) !important;
    height: var(--ui-header-control-h) !important;
    border-radius: var(--ui-header-control-radius) !important;
    padding: 0 var(--ui-header-control-pad-x) !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.45rem !important;
}

/* Header: normalize notification bell (radius + make it match the theme accent, not "success" green). */
.dash-header .drp-notification #notificationDropdownTrigger {
    border-radius: var(--ui-header-control-radius) !important;
}

.dash-header .drp-notification .btn-outline-success {
    color: var(--ui-accent);
    border-color: var(--ui-accent);
    --bs-btn-color: var(--ui-accent);
    --bs-btn-border-color: var(--ui-accent);
}

.dash-header .drp-notification .btn-outline-success:hover,
.dash-header .drp-notification .btn-outline-success:focus {
    color: #ffffff;
    background: var(--ui-accent);
    border-color: var(--ui-accent);
    box-shadow: none;
}

/* Header icon coloring (language + header icons). */
.dash-header .drp-language .drp-text,
.dash-header .dash-head-link > i:not(.nocolor) {
    color: var(--ui-accent);
}

/* Sidebar/menu: minimal + flat taste (no heavy shadows, soft hover/active). */
.dash-header {
    box-shadow: none !important;
    border-bottom: 1px solid var(--ui-border-soft);
}

.dash-header:not(.transprent-bg) {
    box-shadow: none !important;
}

.dash-container .dash-content {
    box-shadow: none;
}

.vy-left .card,
.vy-right .card {
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(16, 24, 40, 0.08);
}

.dash-sidebar,
.dash-sidebar.light-sidebar {
    box-shadow: none !important;
    border-right: 1px solid var(--ui-border-soft);
    background: #ffffff;
}

.dash-sidebar .dash-link .dash-micon,
.dash-sidebar.light-sidebar .dash-link .dash-micon {
    box-shadow: none !important;
    border: 0 !important;
    border-radius: 8px;
    background: var(--ui-accent-soft, rgba(81, 69, 157, 0.14));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    width: 36px;
    flex-shrink: 0;
    margin-right: 0 !important;
}

.dash-sidebar .dash-item:not(.active) > .dash-link .dash-micon,
.dash-sidebar.light-sidebar .dash-item:not(.active) > .dash-link .dash-micon {
    background: transparent;
}

.dash-sidebar .dash-link .dash-micon i,
.dash-sidebar .dash-link .dash-micon svg {
    margin-bottom: 4px;
}

.dash-sidebar .dash-navbar > .dash-item > .dash-link {
    border-radius: 8px;
    transition: background-color 0.15s ease, color 0.15s ease;
    align-items: center;
}

.dash-sidebar .dash-navbar > .dash-item > .dash-link:hover {
    background: var(--ui-accent-soft, rgba(81, 69, 157, 0.14));
    color: var(--ui-accent);
}

.dash-sidebar.light-sidebar .dash-navbar > .dash-item.active > .dash-link,
.dash-sidebar .dash-navbar > .dash-item.active > .dash-link {
    background: var(--ui-accent-soft, rgba(81, 69, 157, 0.14));
    color: var(--ui-accent);
    box-shadow: none;
}

.dash-sidebar.light-sidebar .dash-navbar > .dash-item.active > .dash-link i,
.dash-sidebar .dash-navbar > .dash-item.active > .dash-link i {
    color: var(--ui-accent);
}

.dash-sidebar.light-sidebar .dash-item .dash-submenu .dash-item::before,
.dash-sidebar .dash-item .dash-submenu .dash-item::before {
    border-right-color: var(--ui-accent);
}

.dash-sidebar.light-sidebar .dash-item .dash-submenu .dash-item.active > .dash-link,
.dash-sidebar.light-sidebar .dash-item .dash-submenu .dash-item:hover > .dash-link,
.dash-sidebar .dash-item .dash-submenu .dash-item.active > .dash-link,
.dash-sidebar .dash-item .dash-submenu .dash-item:hover > .dash-link {
    color: var(--ui-accent);
}

/* Sidebar submenu marker (check/angle style). */
body:not(.minimenu) .dash-sidebar .dash-submenu .dash-item:before {
    width: 7px;
    height: 7px;
    border: 2px solid var(--ui-accent);
    border-right-color: var(--ui-accent);
    border-left: 0;
    border-top: 0;
    border-radius: 0;
    transform: rotate(-45deg);
    transition: transform 0.15s ease;
}

body:not(.minimenu) .dash-sidebar .dash-submenu .dash-item.active:before,
body:not(.minimenu) .dash-sidebar .dash-submenu .dash-item:hover:before {
    transform: translateX(3px) rotate(-45deg);
}

body:not(.minimenu) .dash-sidebar .dash-submenu .dash-item:before {
    width: 6px;
    height: 6px;
    left: 40px;
    top: 9px;
}

.dash-sidebar .dash-arrow {
    transition: transform 0.15s ease;
    transform: rotate(0deg) !important;
}

.dash-sidebar .dash-arrow svg,
.dash-sidebar .dash-arrow i {
    transform: none !important;
}

.dash-sidebar .dash-hasmenu.dash-trigger > .dash-link > .dash-arrow {
    transform: rotate(90deg) !important;
}

body:not(.minimenu) .dash-sidebar .dash-link {
    margin: 8px 0;
    padding: 2px 6px 0px 61px;
}

.dash-sidebar.light-sidebar .dash-navbar > .dash-item > .dash-link {
    padding: 7px 10px 5px 7px;
}

/* Beat theme selectors like `body.theme-1 ...` (same specificity, later in cascade). */
body[class] .dash-header .drp-language .drp-text,
body[class] .dash-header .dash-head-link > i:not(.nocolor) {
    color: var(--ui-accent) !important;
}

body[class] .dash-sidebar.light-sidebar .dash-navbar > .dash-item.active > .dash-link,
body[class] .dash-sidebar.light-sidebar .dash-navbar > .dash-item:active > .dash-link,
body[class] .dash-sidebar.light-sidebar .dash-navbar > .dash-item:focus > .dash-link,
body[class] .dash-sidebar.light-sidebar .dash-navbar > .dash-item:hover > .dash-link,
body[class] .dash-sidebar .dash-navbar > .dash-item.active > .dash-link,
body[class] .dash-sidebar .dash-navbar > .dash-item:active > .dash-link,
body[class] .dash-sidebar .dash-navbar > .dash-item:focus > .dash-link,
body[class] .dash-sidebar .dash-navbar > .dash-item:hover > .dash-link {
    background: var(--ui-accent-soft, rgba(81, 69, 157, 0.14)) !important;
    color: var(--ui-accent) !important;
    box-shadow: none !important;
}

body[class] .dash-sidebar.light-sidebar .dash-navbar > .dash-item.active > .dash-link i,
body[class] .dash-sidebar.light-sidebar .dash-navbar > .dash-item:active > .dash-link i,
body[class] .dash-sidebar.light-sidebar .dash-navbar > .dash-item:focus > .dash-link i,
body[class] .dash-sidebar.light-sidebar .dash-navbar > .dash-item:hover > .dash-link i,
body[class] .dash-sidebar .dash-navbar > .dash-item.active > .dash-link i,
body[class] .dash-sidebar .dash-navbar > .dash-item:active > .dash-link i,
body[class] .dash-sidebar .dash-navbar > .dash-item:focus > .dash-link i,
body[class] .dash-sidebar .dash-navbar > .dash-item:hover > .dash-link i {
    color: var(--ui-accent) !important;
}

body[class] .dash-sidebar.light-sidebar .dash-item .dash-submenu .dash-item::before,
body[class] .dash-sidebar .dash-item .dash-submenu .dash-item::before {
    border-right-color: var(--ui-accent) !important;
}

body[class] .dash-sidebar.light-sidebar .dash-item .dash-submenu .dash-item.active > .dash-link,
body[class] .dash-sidebar.light-sidebar .dash-item .dash-submenu .dash-item:active > .dash-link,
body[class] .dash-sidebar.light-sidebar .dash-item .dash-submenu .dash-item:focus > .dash-link,
body[class] .dash-sidebar.light-sidebar .dash-item .dash-submenu .dash-item:hover > .dash-link,
body[class] .dash-sidebar .dash-item .dash-submenu .dash-item.active > .dash-link,
body[class] .dash-sidebar .dash-item .dash-submenu .dash-item:active > .dash-link,
body[class] .dash-sidebar .dash-item .dash-submenu .dash-item:focus > .dash-link,
body[class] .dash-sidebar .dash-item .dash-submenu .dash-item:hover > .dash-link {
    color: var(--ui-accent) !important;
}
