/*
 * theme_light.css — Mosaiq8 Light Theme
 * Inspirat din WSJ / Financial Times / Stripe Dashboard
 * Incarca DUPA style.css in layout.html pentru a suprascrie tema dark implicita.
 */

/* ============================================================
   1. VARIABILE — suprascrie culorile dark din style.css :root
   ============================================================ */
:root {
    /* Brand */
    --primary:              #1D4ED8;
    --primary-hover:        #1E40AF;
    --primary-dark:         #1E3A8A;
    --secondary:            #10B981;
    --linear:               linear-gradient(90deg, #1D4ED8 0%, #7C3AED 100%);

    /* RGBA primary (folosite in hover-uri, badge-uri etc.) */
    --rgba-primary-1:       rgba(29, 78, 216, 0.1);
    --rgba-primary-2:       rgba(29, 78, 216, 0.2);
    --rgba-primary-3:       rgba(29, 78, 216, 0.3);
    --rgba-primary-4:       rgba(29, 78, 216, 0.4);
    --rgba-primary-5:       rgba(29, 78, 216, 0.5);
    --rgba-primary-6:       rgba(29, 78, 216, 0.6);
    --rgba-primary-7:       rgba(29, 78, 216, 0.7);
    --rgba-primary-8:       rgba(29, 78, 216, 0.8);
    --rgba-primary-9:       rgba(29, 78, 216, 0.9);

    /* Bootstrap overrides */
    --bs-primary:           #1D4ED8;
    --bs-primary-rgb:       29, 78, 216;
    --bs-secondary:         #10B981;
    --bs-secondary-rgb:     16, 185, 129;

    /* Background */
    --bs-body-bg:           #F1F5F9;
    --bs-body-bg-rgb:       241, 245, 249;
    --bs-card-bg:           #FFFFFF;

    /* Text */
    --bs-body-color:        #334155;
    --bs-body-color-rgb:    51, 65, 85;
    --text-color:           #0F172A;
    --title:                #0F172A;

    /* Alte variabile tema */
    --bg-circle:            linear-gradient(131.92deg, #EFF6FF 14.55%, #DBEAFE 95.62%);

    /* Borders */
    --border-color:         #E2E8F0;
}

/* ============================================================
   2. BODY & FUNDAL GENERAL
   ============================================================ */
body {
    background-color: #F1F5F9 !important;
    color: #334155 !important;
}

#main-wrapper {
    background-color: #F1F5F9;
}

.content-body {
    background-color: #F1F5F9;
}

/* ============================================================
   3. HEADER (bara de sus)
   ============================================================ */
.header {
    background: #FFFFFF !important;
    border-bottom: 1px solid #E2E8F0 !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06) !important;
}

/* Titlul paginii din header (dashboard_bar) */
.dashboard_bar,
.dashboard_bar h4,
.dashboard_bar .h4,
.dashboard_bar span,
.dashboard_bar p,
.dashboard_bar a {
    color: #0F172A !important;
}

/* Iconita si textul userului din header (text-white hardcodat) */
.header .user-profile i.text-white,
.header .user-profile .text-white,
.header .user-profile .text-white-50 {
    color: #64748B !important;
}

.header .header-content {
    background: #FFFFFF !important;
}

.header-right .dropdown-menu,
.header .dropdown-menu {
    background: #FFFFFF !important;
    border: 1px solid #E2E8F0 !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08) !important;
    color: #334155 !important;
}

.header-right .dropdown-item,
.header .dropdown-item {
    color: #334155 !important;
    background: transparent !important;
}

.header-right .dropdown-item:hover,
.header .dropdown-item:hover {
    background: #F1F5F9 !important;
    color: #0F172A !important;
}

/* Search / input in header */
.header .search-area .form-control {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    color: #334155;
}

/* Header search dropdown — overflow + z-index fix */
.header,
.header .header-content,
.header .navbar,
.header .navbar-collapse {
    overflow: visible !important;
}
#layout-ticker-dropdown {
    z-index: 9999 !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    max-height: 320px;
    overflow-y: auto;
}

/* Search box din navbar (input-group cu bg-primary) */
.header .input-group-text.bg-primary,
.header .input-group-text[class*="bg-primary"] {
    background-color: #1D4ED8 !important;
    border-color: #1D4ED8 !important;
}
.header .input-group .form-control.border-primary,
.header .input-group .form-control[class*="border-primary"] {
    border-color: #1D4ED8 !important;
    background: #FFFFFF !important;
    color: #0F172A !important;
}
.header .input-group .form-control.border-primary:focus {
    box-shadow: 0 0 0 2px rgba(29,78,216,0.15) !important;
    outline: none;
}

/* Icons header */
.header-right .nav-link,
.header-right a {
    color: #64748B;
}

.header-right .nav-link:hover,
.header-right a:hover {
    color: #1D4ED8;
}

/* Hamburger */
.nav-control .hamburger .line {
    background: #334155 !important;
}
.hamburger {
    background: rgba(29, 78, 216, 0.12) !important;
}
.hamburger svg path {
    fill: #1D4ED8 !important;
}

/* ============================================================
   4. NAV HEADER (logo area)
   ============================================================ */
.nav-header {
    background: #FFFFFF !important;
    border-right: 1px solid #E2E8F0;
    border-bottom: 1px solid #E2E8F0;
}

.nav-header .brand-logo .brand-title {
    color: #0F172A !important;
}

.nav-header .brand-logo .brand-title h2,
.nav-header .brand-logo .brand-title .h2 {
    color: #0F172A !important;
}

/* ============================================================
   5. SIDEBAR / DLABNAV
   ============================================================ */
.dlabnav {
    background: #FFFFFF !important;
    border-right: 1px solid #E2E8F0 !important;
    box-shadow: 2px 0 8px rgba(0,0,0,0.04) !important;
}

/* Categorii sidebar */
.dlabnav .nav-label {
    color: #94A3B8 !important;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Menu items */
.dlabnav .metismenu > li > a {
    color: #475569 !important;
}

.dlabnav .metismenu > li > a:hover,
.dlabnav .metismenu > li:hover > a {
    color: #1D4ED8 !important;
    background: #EFF6FF !important;
}

.dlabnav .metismenu > li.mm-active > a {
    color: #1D4ED8 !important;
    background: #EFF6FF !important;
    font-weight: 600;
}

.dlabnav .metismenu > li.mm-active > a .menu-icon {
    color: #1D4ED8 !important;
}

/* Sub-menu */
.dlabnav .metismenu ul {
    background: #F8FAFC !important;
    border-left: 2px solid #DBEAFE;
}

.dlabnav .metismenu ul a {
    color: #64748B !important;
}

.dlabnav .metismenu ul a:hover,
.dlabnav .metismenu ul li.mm-active a {
    color: #1D4ED8 !important;
    background: #EFF6FF !important;
}

/* Menu icons */
.dlabnav .metismenu .menu-icon {
    color: #94A3B8 !important;
}

/* Iconite font (Line Awesome) in sidebar — suprascrie inline style */
.dlabnav .metismenu .menu-icon i,
.dlabnav .metismenu .menu-icon .sidebar-icon {
    color: #94A3B8 !important;
    font-size: 22px !important;
}

/* SVG-uri inline in sidebar — currentColor mosteneste din parinte */
.dlabnav .metismenu > li > a {
    color: #475569 !important;
}

/* Iconite SVG inline — fill mosteneste din color al link-ului */
.dlabnav .metismenu > li > a svg path {
    fill: currentColor !important;
}

.dlabnav .metismenu > li.mm-active > a .sidebar-icon,
.dlabnav .metismenu > li.mm-active > a i {
    color: #1D4ED8 !important;
}

.dlabnav .metismenu > li > a:hover .sidebar-icon,
.dlabnav .metismenu > li > a:hover i {
    color: #1D4ED8 !important;
}

/* ============================================================
   6. CARDURI
   ============================================================ */
.card {
    background: #FFFFFF !important;
    border: 1px solid #E2E8F0 !important;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06) !important;
}

.card-header {
    background: #FFFFFF !important;
    border-bottom: 1px solid #E2E8F0 !important;
    color: #0F172A !important;
}

.card-body {
    background: #FFFFFF !important;
    color: #334155 !important;
}

.card-footer {
    background: #F8FAFC !important;
    border-top: 1px solid #E2E8F0 !important;
}

/* Card title */
.card-title,
.card-title h1, .card-title h2, .card-title h3,
.card-title h4, .card-title h5, .card-title h6 {
    color: #0F172A !important;
}

/* ============================================================
   7. TABELE
   ============================================================ */
.table {
    color: #334155 !important;
    border-color: #E2E8F0 !important;
}

.table thead th,
.table .thead-info th {
    background: #F8FAFC !important;
    color: #0F172A !important;
    border-bottom: 2px solid #E2E8F0 !important;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.03em;
}

.table tbody tr {
    border-bottom: 1px solid #F1F5F9;
}

.table tbody tr:hover {
    background: #F8FAFC !important;
}

.table-bordered {
    border: 1px solid #E2E8F0 !important;
}

.table-bordered td,
.table-bordered th {
    border: 1px solid #E2E8F0 !important;
}

/* Custom tabla din stock_analysis */
.primary-table-bordered {
    background: #FFFFFF !important;
    color: #334155 !important;
}

.primary-table-bordered thead th {
    background: #F8FAFC !important;
    color: #0F172A !important;
}

.primary-table-bordered tbody tr:hover {
    background: #EFF6FF !important;
}

/* ============================================================
   8. TIPOGRAFIE & TEXTE
   ============================================================ */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    color: #0F172A !important;
}

p, span, li, label {
    color: #334155 !important;
}

.text-muted {
    color: #64748B !important;
}

a {
    color: #1D4ED8;
}

a:hover {
    color: #1E40AF;
}

/* ============================================================
   9. BUTOANE
   ============================================================ */
.btn-primary {
    background-color: #1D4ED8 !important;
    border-color: #1D4ED8 !important;
    color: #FFFFFF !important;
}

.btn-primary:hover {
    background-color: #1E40AF !important;
    border-color: #1E40AF !important;
}

.btn-outline-primary {
    color: #1D4ED8 !important;
    border-color: #1D4ED8 !important;
}

.btn-outline-primary:hover {
    background-color: #1D4ED8 !important;
    color: #FFFFFF !important;
}

.btn-outline-primary.active,
.btn-outline-primary:active {
    background-color: #1D4ED8 !important;
    border-color: #1D4ED8 !important;
    color: #FFFFFF !important;
}

.btn-outline-secondary {
    color: #475569 !important;
    border-color: #CBD5E1 !important;
    background: #FFFFFF !important;
}

.btn-outline-secondary:hover,
.btn-outline-secondary.active {
    background-color: #1D4ED8 !important;
    border-color: #1D4ED8 !important;
    color: #FFFFFF !important;
}

.btn-secondary {
    background-color: #10B981 !important;
    border-color: #10B981 !important;
    color: #FFFFFF !important;
}

/* ============================================================
   10. TABS / NAVIGATIE
   ============================================================ */
.nav-tabs {
    border-bottom: 2px solid #E2E8F0 !important;
}

.nav-tabs .nav-link {
    color: #64748B !important;
    border: none !important;
    padding-bottom: 0.75rem;
}

.nav-tabs .nav-link:hover {
    color: #1D4ED8 !important;
    border-bottom: 2px solid #BFDBFE !important;
}

.nav-tabs .nav-link.active {
    color: #1D4ED8 !important;
    font-weight: 600;
    border: none !important;
    border-bottom: 2px solid #1D4ED8 !important;
    background: transparent !important;
}

/* Iconițe din tab-uri — override .default-tab .nav-link i { color: var(--primary) } din style.css */
.default-tab .nav-link i,
.custom-tab-1 .nav-link i {
    color: inherit !important;
    transform: none !important;
}

.nav-pills .nav-link {
    color: #64748B !important;
    background: transparent !important;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    background-color: #1D4ED8 !important;
    color: #FFFFFF !important;
}

/* Tab Evolutie financiara si Indicatori — text si tabel AJAX */
#financials,
#financials .tab-pane,
#financials .tab-content,
#indicators {
    color: #334155 !important;
}

#financials table,
#financials td,
#financials th,
#financials .primary-table-bordered td,
#financials .primary-table-bordered th,
#indicators table,
#indicators td,
#indicators th {
    color: #334155 !important;
}

#financials p,
#financials span,
#financials label,
#indicators p,
#indicators span,
#indicators label {
    color: #334155;
}

/* Accordion indicatori — text dark */
#accordion-ratios,
#accordion-ratios .accordion-button,
#accordion-ratios .accordion-body,
#accordion-ratios .accordion-item {
    color: #334155 !important;
}

#accordion-ratios .accordion-button:not(.collapsed) {
    color: #1D4ED8 !important;
    background-color: #EFF6FF !important;
}

/* ============================================================
   11. FORMULARE / INPUTURI
   ============================================================ */
.form-control {
    background: #FFFFFF !important;
    border: 1px solid #CBD5E1 !important;
    color: #334155 !important;
}

.form-control:focus {
    border-color: #1D4ED8 !important;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15) !important;
}

.form-control::placeholder {
    color: #94A3B8 !important;
}

.form-select {
    background-color: #FFFFFF !important;
    border: 1px solid #CBD5E1 !important;
    color: #334155 !important;
}

/* ============================================================
   12. BADGE-URI & ALERT-URI
   ============================================================ */
.badge.bg-primary,
.badge-primary {
    background-color: #1D4ED8 !important;
}

.badge.bg-success,
.badge-success {
    background-color: #10B981 !important;
}

.alert-primary {
    background: #EFF6FF;
    border-color: #BFDBFE;
    color: #1D4ED8;
}

/* ============================================================
   13. DROPDOWN-URI
   ============================================================ */
.dropdown-menu {
    background: #FFFFFF !important;
    border: 1px solid #E2E8F0 !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08) !important;
    color: #334155 !important;
}

.dropdown-item {
    color: #334155 !important;
    background: transparent !important;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background: #F1F5F9 !important;
    color: #0F172A !important;
}

.dropdown-divider {
    border-color: #E2E8F0 !important;
}

/* ============================================================
   14. MODAL
   ============================================================ */
.modal-content {
    background: #FFFFFF !important;
    border: 1px solid #E2E8F0;
}

.modal-header {
    background: #FFFFFF !important;
    border-bottom: 1px solid #E2E8F0;
}

.modal-title {
    color: #0F172A !important;
}

.modal-footer {
    background: #F8FAFC !important;
    border-top: 1px solid #E2E8F0;
}

/* ============================================================
   15. SCROLLBAR personalizat
   ============================================================ */
.custom-scroll-wrapper::-webkit-scrollbar-track {
    background: #F1F5F9;
}

.custom-scroll-wrapper::-webkit-scrollbar-thumb {
    background: #CBD5E1;
    border-radius: 4px;
}

.custom-scroll-wrapper::-webkit-scrollbar-thumb:hover {
    background: #94A3B8;
}

/* ============================================================
   16. ELEMENTE SPECIFICE MOSAIQ8
   ============================================================ */

/* Tabel freeze column */
.freeze-column td:first-child,
.freeze-column th:first-child {
    background: #FFFFFF !important;
    border-right: 2px solid #E2E8F0 !important;
}

/* Loading text */
.table-container > p.text-muted {
    color: #94A3B8 !important;
    font-style: italic;
}

/* Tab pane */
.tab-pane {
    background: transparent;
}

/* Page title / breadcrumb */
.page-titles {
    background: transparent;
}

.page-titles h4,
.page-titles .h4 {
    color: #0F172A !important;
}

/* ============================================================
   17. CHART CARDS — structura standardizata
   ============================================================ */

/* Card cu grafic — flex-column explicit ca sa nu depinda de style.css */
.chart-card {
    height: 500px !important;
    overflow: hidden;
    display: flex !important;
    flex-direction: column !important;
}

/* Header fix 50px — titlu + iconita info aliniate orizontal */
.chart-card .card-header {
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    gap: 0.5rem;
}

/* Titlul ocupa tot spatiul disponibil, trunchiaza cu ellipsis daca e prea lung */
.chart-card .card-title {
    margin-bottom: 0;
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Iconita info — nu se comprima niciodata */
.chart-card .card-header i {
    flex-shrink: 0;
    color: #94A3B8;
}

/* Body ocupa tot spatiul ramas din card (500px - 50px header - 2px border = ~448px) */
.chart-card .card-body {
    flex: 1;
    min-height: 0;
    padding: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Wrapper relativ pentru canvas + pozitionare donut center label */
.chart-canvas-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 0;
    overflow: hidden;
}

.chart-canvas-wrapper canvas {
    width: 100% !important;
    height: 100% !important;
}

/* Banner sectiune (Cele mai recente trimestriale / anuale) */
.section-header-card {
    height: 50px;
    margin-bottom: 1rem;
}

.section-header-card .card-body {
    height: 50px !important;
    padding: 0 1rem !important;
    display: flex;
    align-items: center;
}

/* Eticheta centrala donut */
#donutCenterLabel {
    pointer-events: none;
    font-size: 0.85rem;
    font-weight: 600;
    color: #334155;
}

/* Badge outline primary — override culorile dark din style.css */
.badge-outline-primary {
    color: #1D4ED8 !important;
    border: 1px solid #1D4ED8 !important;
    background: transparent !important;
}

.badge-outline-primary:hover {
    background: rgba(29, 78, 216, 0.08) !important;
}

/* ============================================================
   17b. DARK THEME OVERRIDES — anuleaza regulile [data-theme-version="dark"]
   ============================================================ */
[data-theme-version="dark"] body,
[data-theme-version="light"] body {
    background-color: #F1F5F9 !important;
    color: #334155 !important;
}

[data-theme-version="dark"] .card,
[data-theme-version="light"] .card {
    background: #FFFFFF !important;
}

[data-theme-version="dark"] .dlabnav,
[data-theme-version="light"] .dlabnav {
    background: #FFFFFF !important;
}

[data-theme-version="dark"] .header,
[data-theme-version="light"] .header {
    background: #FFFFFF !important;
}

/* ============================================================
   18. PAGINA ARTICOL (article_full_page.html)
   ============================================================ */

.art-kicker {
    color: #1D4ED8 !important;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.art-title {
    color: #0F172A !important;
}

/* Meta sectiune: company, sector, data, autor — doua linii separate */
.art-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    align-items: center;
    border-top: 1px solid #E2E8F0 !important;
    border-bottom: 1px solid #E2E8F0 !important;
    padding: 0.6rem 0;
    margin: 1rem 0 1.5rem;
    color: #64748B !important;
}

.art-meta .meta-item {
    color: #64748B !important;
    font-size: 0.875rem;
}

.art-meta .meta-item em {
    color: #94A3B8 !important;
    font-style: italic;
}

/* Buton audio */
.audio-play-btn {
    cursor: pointer;
    color: #1D4ED8 !important;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.audio-play-btn i {
    font-size: 1.4rem;
    vertical-align: middle;
}

/* Continut articol */
.art-body {
    color: #334155 !important;
}

.art-body h1, .art-body h2, .art-body h3,
.art-body h4, .art-body h5, .art-body h6 {
    color: #0F172A !important;
}

.art-body p, .art-body li, .art-body span {
    color: #334155 !important;
}

.art-body a {
    color: #1D4ED8 !important;
}

.art-body td, .art-body th {
    color: #334155 !important;
}

/* Footer articol */
.article-extra {
    color: #64748B;
}

.article-extra hr {
    border-color: #E2E8F0 !important;
    opacity: 1;
}

.disclaimer-note {
    color: #94A3B8 !important;
    font-size: 0.85rem;
}

.disclaimer-link {
    color: #1D4ED8 !important;
}

.feedback-question {
    color: #334155 !important;
}

.feedback-thanks {
    color: #64748B !important;
}

/* ============================================================
   19. FULLCALENDAR — override tema dark
   ============================================================ */

/* Fundal si borduri grid */
.fc-theme-standard td,
.fc-theme-standard th {
    border-color: #E2E8F0 !important;
}

.fc-theme-standard .fc-scrollgrid {
    border-color: #E2E8F0 !important;
}

/* Titlul lunii curente */
.fc-toolbar-title {
    color: #0F172A !important;
}

/* Zilele saptamanii (Lu, Ma, Mi...) */
.fc-col-header-cell-cushion {
    color: #475569 !important;
    font-weight: 600;
    text-decoration: none !important;
}

/* Numerele zilelor din celule */
.fc-daygrid-day-number {
    color: #334155 !important;
    text-decoration: none !important;
}

/* Ziua de azi — highlight subtil */
.fc-day-today {
    background-color: rgba(29, 78, 216, 0.04) !important;
}

.fc-day-today .fc-daygrid-day-number {
    color: #1D4ED8 !important;
    font-weight: 700;
}

/* Butoane FullCalendar (Today, Luna, Saptamana, An, Zi) */
.fc-button-primary {
    background-color: transparent !important;
    border-color: #1D4ED8 !important;
    color: #1D4ED8 !important;
    box-shadow: none !important;
    font-weight: 500;
}

.fc-button-primary:hover {
    background-color: rgba(29, 78, 216, 0.08) !important;
    border-color: #1D4ED8 !important;
    color: #1D4ED8 !important;
}

.fc-button-primary:focus,
.fc-button-primary:not(:disabled):focus {
    box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.15) !important;
}

/* Buton activ (view selectat) */
.fc-button-primary:not(:disabled).fc-button-active,
.fc-button-primary:not(:disabled):active {
    background-color: #1D4ED8 !important;
    border-color: #1D4ED8 !important;
    color: #FFFFFF !important;
}

/* Sagetile prev/next */
.fc-prev-button,
.fc-next-button {
    background-color: transparent !important;
    border-color: #1D4ED8 !important;
    color: #1D4ED8 !important;
}

.fc-prev-button:hover,
.fc-next-button:hover {
    background-color: #1D4ED8 !important;
    color: #FFFFFF !important;
}

/* Text general in calendar */
.fc {
    color: #334155;
}

/* ============================================================
   20. FOOTER
   ============================================================ */
.footer {
    background: #FFFFFF !important;
    border-top: 1px solid #E2E8F0 !important;
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
    margin-top: 0 !important;
    padding: 0 !important;
}

.footer .footer-inner {
    text-align: center;
    padding: 0.7rem 1rem;
}

.footer .footer-line {
    margin: 0 0 0.2rem;
    font-size: 0.8rem;
    color: #475569 !important;
    line-height: 1.6;
}

.footer .footer-line strong {
    color: #0F172A !important;
    font-weight: 700;
}

.footer .footer-line a {
    color: #475569 !important;
    text-decoration: none;
    transition: color 0.15s;
}

.footer .footer-line a:hover {
    color: #1D4ED8 !important;
}

.footer .footer-copy {
    margin: 0;
    font-size: 0.72rem;
    color: #94A3B8 !important;
}

/* ============================================================
   21. CHECKBOX-URI (form-check-input)
   style.css seteaza border si background alb-translucid
   (rgba(255,255,255,0.5)) — gandit pentru fundal intunecat, dar
   invizibil pe cardurile albe din tema light. Fortam un border
   vizibil si culoarea albastru principal cand e bifat.
   ============================================================ */
.form-check-input {
    background-color: #FFFFFF !important;
    border-color: #94A3B8 !important;
}

.form-check-input:checked {
    background-color: #1D4ED8 !important;
    border-color: #1D4ED8 !important;
}

.form-check-input:focus {
    border-color: #1D4ED8 !important;
    box-shadow: 0 0 0 0.2rem rgba(29, 78, 216, 0.25) !important;
}

/* ============================================================
   22. LINK-URI IN INTERIORUL ALERTELOR
   style.css forteaza .alert-* a { color: #fff }, invizibil pe
   fundalurile deschise din tema light. Aducem link-urile la
   albastrul principal, la fel ca butoanele.
   ============================================================ */
.alert a {
    color: #1D4ED8 !important;
    text-decoration: underline;
}

.alert a:hover {
    color: #1E40AF !important;
}

/* ============================================================
   23. RESPONSIVE
   ============================================================ */
@media (max-width: 767px) {
    .dlabnav {
        background: #FFFFFF !important;
        border-right: none !important;
        box-shadow: 4px 0 16px rgba(0,0,0,0.1) !important;
    }
}
