/* Theme-color overrides for the Default (orange) theme — loaded after the numbered
   theme files by AppAsset::getThemeCssFiles(). */

/* The accent every var(--theme-color, ...) rule in css/custom.css resolves to.
   Without this definition those rules always fell back to the orange default,
   whatever the tenant's theme. */
:root {
    --theme-color: #ffa019;
}

/* Category treeview (announcements sidebar): selected + hover follow the theme color
   (css/custom.css ships the blue #0278c2 and loads last, hence the extra specificity). */
.sidebarInner .treeview .subtree-open > .subtree-header > a {
    border-bottom-color: #ffa019 !important;
    color: #ffa019 !important;
}
.sidebarInner .treeview .active > a,
.sidebarInner .treeview a:hover {
    color: #ffa019 !important;
}
.sidebarInner .treeview .btn-subtree-toggle:focus,
.sidebarInner .treeview .btn-subtree-toggle:hover {
    color: #ffa019 !important;
}

/* Linkurile din breadcrumb poartă culoarea temei; ultimul element (pagina
   curentă) rămâne #222222 din css/custom.css. */
.breadcrumb > li a {
    color: #ffa019;
}

/* Pachetul recomandat selectat preia culoarea temei in locul albastrului info
   (css/custom.css defineste albastrul si se incarca ultimul, de aici !important). */
.advancedSupport.active .priceRecommendedBadge {
    background-color: #ffa019 !important;
}

/* Sagetile carousel-ului de pachete: hover pe culoarea temei
   (css/custom.css defineste default-ul si se incarca ultimul, de aici !important). */
.carousel-pricing .carousel-navigation > .carousel-navigation-prev:hover,
.carousel-pricing .carousel-navigation > .carousel-navigation-next:hover {
    background-color: #ffa019 !important;
    border-color: #ffa019 !important;
}
