:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary: #ec4899;
    --accent: #06b6d4;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #3b82f6;
}

/* Light Mode Variables */
[data-bs-theme="light"],
:root:not([data-bs-theme="dark"]) {
    --bg-dark: #f8fafc;
    --bg-darker: #f1f5f9;
    --bg-card: #ffffff;
    --bg-card-hover: #f1f5f9;

    --text-primary: #0f172a;
    --text-secondary: #334155;
    --text-muted: #64748b;

    --border-color: #e2e8f0;
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(0, 0, 0, 0.05);
}

/* Dark Mode Variables */
[data-bs-theme="dark"] {
    --bg-dark: #0f172a;
    --bg-darker: #020617;
    --bg-card: #1e293b;
    --bg-card-hover: #334155;

    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;

    --border-color: #334155;
    --glass-bg: rgba(30, 41, 59, 0.8);
    --glass-border: rgba(148, 163, 184, 0.1);
}

/* ================================
   SIDEBAR ENHANCEMENT
   ================================ */
.app-sidebar {
    background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-dark) 100%) !important;
    border-right: 1px solid var(--border-color) !important;
}

.app-sidebar-header {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.5rem !important;
}

.app-sidebar-logo img {
    filter: brightness(1.1);
}

/* All menu links in sidebar */
.app-sidebar .menu-link,
.app-sidebar .menu-item .menu-link,
.app-sidebar-menu-primary .menu-item .menu-link {
    color: var(--text-secondary) !important;
    border-radius: 10px !important;
    margin: 2px 12px !important;
    padding: 10px 14px !important;
    transition: all 0.3s ease !important;
}

/* Menu title text */
.app-sidebar .menu-title,
.app-sidebar .menu-link .menu-title,
.app-sidebar-menu-primary .menu-title {
    color: var(--text-secondary) !important;
}

/* Menu hover state */
.app-sidebar .menu-link:hover,
.app-sidebar .menu-item .menu-link:hover,
.app-sidebar-menu-primary .menu-item .menu-link:hover {
    background: rgba(99, 102, 241, 0.2) !important;
    color: var(--text-primary) !important;
}

.app-sidebar .menu-link:hover .menu-title,
.app-sidebar-menu-primary .menu-item .menu-link:hover .menu-title {
    color: var(--text-primary) !important;
}

.app-sidebar-menu-primary .menu-item .menu-link:hover .menu-icon,
.app-sidebar-menu-primary .menu-item .menu-link:hover .menu-icon i {
    color: var(--primary-light) !important;
}

/* Active state */
.app-sidebar .menu-link.active,
.app-sidebar-menu-primary .menu-item .menu-link.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3) !important;
}

.app-sidebar .menu-link.active .menu-title,
.app-sidebar-menu-primary .menu-link.active .menu-title {
    color: white !important;
}

/* Menu icons */
.app-sidebar .menu-icon,
.app-sidebar .menu-icon i,
.app-sidebar-menu-primary .menu-item .menu-link .menu-icon i {
    color: var(--text-muted) !important;
    transition: all 0.3s ease !important;
}

.app-sidebar-menu-primary .menu-item .menu-link:hover .menu-icon i,
.app-sidebar-menu-primary .menu-item .menu-link.active .menu-icon i {
    color: inherit !important;
}

/* Submenu styles */
.app-sidebar .menu-sub,
.app-sidebar .menu-sub-accordion {
    background: transparent !important;
}

.app-sidebar .menu-sub .menu-item .menu-link,
.app-sidebar .menu-sub-accordion .menu-item .menu-link {
    color: var(--text-secondary) !important;
    padding: 8px 14px 8px 40px !important;
}

.app-sidebar .menu-sub .menu-item .menu-link .menu-title,
.app-sidebar .menu-sub-accordion .menu-item .menu-link .menu-title {
    color: var(--text-secondary) !important;
}

.app-sidebar .menu-sub .menu-item .menu-link:hover,
.app-sidebar .menu-sub-accordion .menu-item .menu-link:hover {
    background: rgba(99, 102, 241, 0.15) !important;
    color: var(--text-primary) !important;
}

.app-sidebar .menu-sub .menu-item .menu-link:hover .menu-title,
.app-sidebar .menu-sub-accordion .menu-item .menu-link:hover .menu-title {
    color: var(--text-primary) !important;
}

.app-sidebar .menu-sub .menu-item .menu-link.active,
.app-sidebar .menu-sub-accordion .menu-item .menu-link.active {
    background: rgba(99, 102, 241, 0.2) !important;
    color: var(--primary-light) !important;
}

.app-sidebar .menu-sub .menu-item .menu-link.active .menu-title,
.app-sidebar .menu-sub-accordion .menu-item .menu-link.active .menu-title {
    color: var(--primary-light) !important;
}

/* Submenu bullet/arrow */
.app-sidebar .menu-sub .menu-bullet,
.app-sidebar .menu-sub .menu-bullet .bullet {
    background: var(--text-muted) !important;
}

.app-sidebar .menu-sub .menu-link:hover .menu-bullet .bullet,
.app-sidebar .menu-sub .menu-link.active .menu-bullet .bullet {
    background: var(--primary) !important;
}

/* Menu arrow for expandable items */
.app-sidebar .menu-arrow,
.app-sidebar .menu-arrow::after {
    color: var(--text-muted) !important;
}

.app-sidebar .menu-link:hover .menu-arrow,
.app-sidebar .menu-link.active .menu-arrow {
    color: var(--text-primary) !important;
}

/* Menu heading */
.menu-heading {
    color: var(--text-muted) !important;
    font-size: 11px !important;
    letter-spacing: 1px !important;
    padding: 0 26px !important;
}

.app-sidebar-separator {
    border-color: var(--border-color) !important;
    opacity: 0.5 !important;
}

#kt_app_sidebar_toggle {
    background: var(--bg-card) !important;
    border: 1px solid var(--border-color) !important;
    color: var(--text-secondary) !important;
}

#kt_app_sidebar_toggle:hover {
    background: var(--primary) !important;
    color: white !important;
}

/* ================================
   HEADER ENHANCEMENT
   ================================ */
.app-header {
    background: var(--glass-bg) !important;
    backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid var(--glass-border) !important;
}

.app-header .symbol img {
    border: 2px solid var(--primary) !important;
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.2) !important;
}

.app-navbar-separator {
    background-color: var(--border-color) !important;
}

/* User dropdown menu */
.menu-sub-dropdown {
    background: var(--bg-card) !important;
    border: 1px solid var(--border-color) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3) !important;
    border-radius: 12px !important;
}

.menu-sub-dropdown .menu-link {
    color: var(--text-secondary) !important;
}

.menu-sub-dropdown .menu-link:hover {
    background: rgba(99, 102, 241, 0.1) !important;
    color: var(--text-primary) !important;
}

/* ================================
   MAIN CONTENT AREA
   ================================ */
.app-main {
    background: var(--bg-dark) !important;
}

.app-content {
    background: transparent !important;
}

/* ================================
   CARDS ENHANCEMENT
   ================================ */
.card {
    background: var(--bg-card) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s ease !important;
}

.card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
    transform: translateY(-2px);
}

.card-header {
    background: transparent !important;
    border-bottom: 1px solid var(--border-color) !important;
    padding: 1.25rem 1.5rem !important;
}

.card-title {
    color: var(--text-primary) !important;
    font-weight: 600 !important;
}

.card-body {
    color: var(--text-secondary) !important;
}

/* ================================
   BUTTONS
   ================================ */
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3) !important;
    transition: all 0.3s ease !important;
}

.btn-primary:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4) !important;
}

.btn-success {
    background: linear-gradient(135deg, var(--success), #059669) !important;
    border: none !important;
}

.btn-danger {
    background: linear-gradient(135deg, var(--danger), #dc2626) !important;
    border: none !important;
}

.btn-light {
    background: var(--bg-card-hover) !important;
    border: 1px solid var(--border-color) !important;
    color: var(--text-secondary) !important;
}

.btn-light:hover {
    background: var(--bg-card) !important;
    color: var(--text-primary) !important;
}

/* ================================
   TABLES
   ================================ */
.table {
    color: var(--text-secondary) !important;
}

.table thead th {
    background: var(--bg-dark) !important;
    color: var(--text-muted) !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    font-size: 11px !important;
    letter-spacing: 0.5px !important;
    border-bottom: 1px solid var(--border-color) !important;
    padding: 1rem !important;
}

.table tbody tr {
    border-bottom: 1px solid var(--border-color) !important;
    transition: all 0.2s ease !important;
}

.table tbody tr:hover {
    background: rgba(99, 102, 241, 0.05) !important;
}

.table tbody td {
    padding: 1rem !important;
    vertical-align: middle !important;
    border: none !important;
}

/* DataTables specific */
.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter,
.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_paginate {
    color: var(--text-secondary) !important;
}

.dataTables_wrapper .dataTables_filter input,
.dataTables_wrapper .dataTables_length select {
    background: var(--bg-dark) !important;
    border: 1px solid var(--border-color) !important;
    color: var(--text-primary) !important;
    border-radius: 8px !important;
    padding: 8px 12px !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    background: var(--bg-card-hover) !important;
    border: 1px solid var(--border-color) !important;
    color: var(--text-secondary) !important;
    border-radius: 8px !important;
    margin: 0 2px !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
    color: white !important;
    border-color: var(--primary) !important;
}

/* ================================
   FORM INPUTS
   ================================ */
.form-control,
.form-select {
    background: var(--bg-dark) !important;
    border: 1px solid var(--border-color) !important;
    color: var(--text-primary) !important;
    border-radius: 10px !important;
    padding: 10px 14px !important;
    transition: all 0.3s ease !important;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1) !important;
    background: var(--bg-dark) !important;
}

.form-control::placeholder {
    color: var(--text-muted) !important;
}

.form-label {
    color: var(--text-secondary) !important;
    font-weight: 500 !important;
    margin-bottom: 0.5rem !important;
}

/* ================================
   BADGES
   ================================ */
.badge-light-primary {
    background: rgba(99, 102, 241, 0.15) !important;
    color: var(--primary-light) !important;
}

.badge-light-success {
    background: rgba(16, 185, 129, 0.15) !important;
    color: var(--success) !important;
}

.badge-light-warning {
    background: rgba(245, 158, 11, 0.15) !important;
    color: var(--warning) !important;
}

.badge-light-danger {
    background: rgba(239, 68, 68, 0.15) !important;
    color: var(--danger) !important;
}

.badge-light-info {
    background: rgba(59, 130, 246, 0.15) !important;
    color: var(--info) !important;
}

/* ================================
   MODAL
   ================================ */
.modal-content {
    background: var(--bg-card) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 16px !important;
}

.modal-header {
    border-bottom: 1px solid var(--border-color) !important;
}

.modal-footer {
    border-top: 1px solid var(--border-color) !important;
}

.modal-title {
    color: var(--text-primary) !important;
}

.btn-close {
    filter: invert(1) !important;
}

/* ================================
   FOOTER
   ================================ */
.app-footer {
    background: transparent !important;
    border-top: 1px solid var(--border-color) !important;
    color: var(--text-muted) !important;
}

/* ================================
   SCROLLBAR
   ================================ */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* ================================
   STAT CARD STYLES
   ================================ */
.stat-card {
    background: var(--bg-card) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 16px !important;
    padding: 1.5rem !important;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.stat-card .stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.stat-card .stat-icon.primary {
    background: rgba(99, 102, 241, 0.15);
    color: var(--primary);
}

.stat-card .stat-icon.success {
    background: rgba(16, 185, 129, 0.15);
    color: var(--success);
}

.stat-card .stat-icon.warning {
    background: rgba(245, 158, 11, 0.15);
    color: var(--warning);
}

.stat-card .stat-icon.info {
    background: rgba(59, 130, 246, 0.15);
    color: var(--info);
}

.stat-card .stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0.5rem 0;
}

.stat-card .stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.stat-card .stat-trend {
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 4px;
}

.stat-card .stat-trend.up {
    color: var(--success);
}

.stat-card .stat-trend.down {
    color: var(--danger);
}

@media (max-width: 576px) {
    .stat-card {
        padding: 1rem !important;
    }
    .stat-card .stat-icon {
        width: 44px !important;
        height: 44px !important;
        border-radius: 10px !important;
    }
    .stat-card .stat-icon i {
        font-size: 1.25rem !important;
    }
    .stat-card .stat-value {
        font-size: 1.5rem !important;
        margin: 0.25rem 0 !important;
    }
    .stat-card .stat-label {
        font-size: 0.8rem !important;
    }
    .stat-card .text-muted.fs-8 {
        font-size: 0.7rem !important;
    }
}

/* ================================
   ANIMATIONS
   ================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.4s ease forwards;
}

/* Staggered animation delays for cards */
.stat-card:nth-child(1) {
    animation-delay: 0.1s;
}

.stat-card:nth-child(2) {
    animation-delay: 0.2s;
}

.stat-card:nth-child(3) {
    animation-delay: 0.3s;
}

.stat-card:nth-child(4) {
    animation-delay: 0.4s;
}

/* ================================
   UTILITY CLASSES
   ================================ */
.text-primary-custom {
    color: var(--primary) !important;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
}

.border-primary-custom {
    border-color: var(--primary) !important;
}

/* Fix text colors for dark theme */
h1,
h2,
h3,
h4,
h5,
h6,
.text-gray-900,
.text-gray-800,
.text-dark {
    color: var(--text-primary) !important;
}

.text-gray-700,
.text-gray-600 {
    color: var(--text-secondary) !important;
}

.text-gray-500,
.text-gray-400,
.text-muted {
    color: var(--text-muted) !important;
}

/* Separator/Divider */
.separator {
    border-color: var(--border-color) !important;
}

/* Alert styles */
.alert-primary {
    background: rgba(99, 102, 241, 0.15) !important;
    border-color: var(--primary) !important;
    color: var(--primary-light) !important;
}

.alert-success {
    background: rgba(16, 185, 129, 0.15) !important;
    border-color: var(--success) !important;
    color: var(--success) !important;
}

.alert-warning {
    background: rgba(245, 158, 11, 0.15) !important;
    border-color: var(--warning) !important;
    color: var(--warning) !important;
}

.alert-danger {
    background: rgba(239, 68, 68, 0.15) !important;
    border-color: var(--danger) !important;
    color: var(--danger) !important;
}

/* ================================
   SVG ICONS FIX
   ================================ */
.svg-icon,
.svg-icon svg,
[class*="ki-"] {
    color: var(--text-secondary) !important;
}

.btn .svg-icon,
.btn .svg-icon svg,
.btn [class*="ki-"] {
    color: inherit !important;
}

/* Search icon in card title */
.card-title .svg-icon,
.card-title .svg-icon svg {
    color: var(--text-muted) !important;
}

/* Position absolute search icon fix */
.position-absolute.svg-icon,
.position-absolute .svg-icon {
    color: var(--text-muted) !important;
}

.position-absolute.svg-icon svg,
.position-absolute .svg-icon svg {
    color: var(--text-muted) !important;
}

/* Fix search input with icon */
.form-control-solid {
    background: var(--bg-dark) !important;
    border: 1px solid var(--border-color) !important;
    color: var(--text-primary) !important;
}

.form-control-solid:focus {
    background: var(--bg-dark) !important;
    border-color: var(--primary) !important;
}

/* Search input with icon - proper padding */
.form-control.ps-14,
input.ps-14 {
    padding-left: 3.5rem !important;
}

/* Search icon container */
.position-absolute.ms-6 {
    left: 0 !important;
    margin-left: 1rem !important;
    z-index: 5 !important;
}

.position-absolute.ms-6 .svg-icon,
.position-absolute.ms-6 svg {
    width: 18px !important;
    height: 18px !important;
}

/* Ensure SVG inside search uses currentColor properly */
.svg-icon-1 svg {
    color: var(--text-muted) !important;
    fill: var(--text-muted) !important;
}

.svg-icon-1 svg path,
.svg-icon-1 svg rect {
    fill: var(--text-muted) !important;
}

/* ================================
   ACTION BUTTONS FIX
   ================================ */
.btn-active-light-primary {
    background: var(--bg-card-hover) !important;
    border: 1px solid var(--border-color) !important;
    color: var(--text-secondary) !important;
}

.btn-active-light-primary:hover,
.btn-active-light-primary.active,
.btn-active-light-primary.show {
    background: rgba(99, 102, 241, 0.15) !important;
    border-color: var(--primary) !important;
    color: var(--primary) !important;
}

.btn-active-light-primary .svg-icon,
.btn-active-light-primary svg {
    color: var(--text-secondary) !important;
}

.btn-active-light-primary:hover .svg-icon,
.btn-active-light-primary:hover svg,
.btn-active-light-primary.show .svg-icon,
.btn-active-light-primary.show svg {
    color: var(--primary) !important;
}

/* Light button variants */
.btn-light-primary {
    background: rgba(99, 102, 241, 0.15) !important;
    color: var(--primary) !important;
    border: none !important;
}

.btn-light-primary:hover {
    background: rgba(99, 102, 241, 0.25) !important;
    color: var(--primary-light) !important;
}

.btn-light-success {
    background: rgba(16, 185, 129, 0.15) !important;
    color: var(--success) !important;
    border: none !important;
}

.btn-light-success:hover {
    background: rgba(16, 185, 129, 0.25) !important;
}

.btn-light-warning {
    background: rgba(245, 158, 11, 0.15) !important;
    color: var(--warning) !important;
    border: none !important;
}

.btn-light-warning:hover {
    background: rgba(245, 158, 11, 0.25) !important;
}

.btn-light-danger {
    background: rgba(239, 68, 68, 0.15) !important;
    color: var(--danger) !important;
    border: none !important;
}

.btn-light-danger:hover {
    background: rgba(239, 68, 68, 0.25) !important;
}

.btn-light-info {
    background: rgba(59, 130, 246, 0.15) !important;
    color: var(--info) !important;
    border: none !important;
}

.btn-light-info:hover {
    background: rgba(59, 130, 246, 0.25) !important;
}

/* ================================
   DROPDOWN MENU FIX
   ================================ */
.menu-sub-dropdown .menu-item .menu-link {
    color: var(--text-secondary) !important;
    padding: 8px 16px !important;
    border-radius: 8px !important;
    margin: 2px 8px !important;
    transition: all 0.2s ease !important;
}

.menu-sub-dropdown .menu-item .menu-link:hover {
    background: rgba(99, 102, 241, 0.1) !important;
    color: var(--text-primary) !important;
}

.menu-sub-dropdown .menu-item .menu-link.text-danger {
    color: var(--danger) !important;
}

.menu-sub-dropdown .menu-item .menu-link.text-danger:hover {
    background: rgba(239, 68, 68, 0.1) !important;
    color: var(--danger) !important;
}

/* ================================
   SYMBOL/AVATAR FIX
   ================================ */
.symbol-label {
    background: var(--bg-card-hover) !important;
    color: var(--text-secondary) !important;
}

.symbol-label.bg-light-primary {
    background: rgba(99, 102, 241, 0.15) !important;
    color: var(--primary) !important;
}

.symbol-label.bg-light-success {
    background: rgba(16, 185, 129, 0.15) !important;
    color: var(--success) !important;
}

.symbol-label.bg-light-warning {
    background: rgba(245, 158, 11, 0.15) !important;
    color: var(--warning) !important;
}

.symbol-label.bg-light-info {
    background: rgba(59, 130, 246, 0.15) !important;
    color: var(--info) !important;
}

/* ================================
   BULLET/INDICATOR FIX
   ================================ */
.bullet {
    background: var(--text-muted) !important;
}

.bullet.bg-primary,
.bullet-primary {
    background: var(--primary) !important;
}

.bullet.bg-success {
    background: var(--success) !important;
}

.bullet.bg-warning {
    background: var(--warning) !important;
}

.bullet.bg-danger {
    background: var(--danger) !important;
}

.bullet.bg-info {
    background: var(--info) !important;
}

/* ================================
   BACKGROUND LIGHT VARIANTS
   ================================ */
.bg-light-primary {
    background: rgba(99, 102, 241, 0.1) !important;
}

.bg-light-success {
    background: rgba(16, 185, 129, 0.1) !important;
}

.bg-light-warning {
    background: rgba(245, 158, 11, 0.1) !important;
}

.bg-light-danger {
    background: rgba(239, 68, 68, 0.1) !important;
}

.bg-light-info {
    background: rgba(59, 130, 246, 0.1) !important;
}

.bg-light {
    background: var(--bg-card-hover) !important;
}

/* ================================
   ICON BUTTON FIX
   ================================ */
.btn-icon {
    color: var(--text-secondary) !important;
}

.btn-icon:hover {
    color: var(--primary) !important;
}

.btn-active-color-primary:hover,
.btn-active-color-primary.active {
    color: var(--primary) !important;
}

.btn-color-gray-700 {
    color: var(--text-secondary) !important;
}

/* ================================
   KI ICONS (Keenthemes Icons) FIX
   ================================ */
[class*="ki-outline"],
[class*="ki-solid"],
[class*="ki-duotone"] {
    color: inherit;
}

.text-primary [class*="ki-"],
.text-primary-custom [class*="ki-"] {
    color: var(--primary) !important;
}

.text-success [class*="ki-"] {
    color: var(--success) !important;
}

.text-warning [class*="ki-"] {
    color: var(--warning) !important;
}

.text-danger [class*="ki-"] {
    color: var(--danger) !important;
}

.text-info [class*="ki-"] {
    color: var(--info) !important;
}