/* 
 * SME - ERP System Style Customizations 
 * Replicating KPI Tracker Layout with Student Management System Typography 
 */

:root {
    --font-primary: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --bg-layout: #f4f6f9;
    --bg-panel: #ffffff;
    --border-color: #e9ecef;
    
    /* Typography Colors (Student Management System feel) */
    --text-dark: #2c3e50;
    --text-muted: #7f8c8d;
    --text-active: #0d6efd;
    --text-white: #ffffff;
    
    /* Status Colors */
    --color-primary: #0d6efd;
    --color-success: #198754;
    --color-danger: #dc3545;
    --color-warning: #ffc107;
    --color-info: #0dcaf0;
    
    --bg-primary-light: rgba(13, 110, 253, 0.08);
    --bg-success-light: rgba(25, 135, 84, 0.08);
    --bg-danger-light: rgba(220, 53, 69, 0.08);
    --bg-warning-light: rgba(255, 193, 7, 0.08);
    
    /* Summary Card Colors (KPI Tracker) */
    --card-purple: #5c6bc0;
    --card-teal: #26c6da;
    --card-green: #26a69a;
    --card-orange: #ffa726;
    
    /* Layout Dimensions */
    --sidebar-width: 250px;
    --header-height: 60px;

    /* Theme adaptive fallback variables */
    --table-header-bg: #f8f9fa;
    --sidebar-hover-bg: #eef2f6;
    --footer-bg: #ffffff;
    --card-border-color: var(--border-color);
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-layout);
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    padding: 0;
}

/* Premium Button Micro-Animations */
.btn {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}
.btn:active {
    transform: translateY(1px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* Layout Wrapper */
.app-container {
    display: flex;
    min-height: 100vh;
}

/* Sidebar Styling */
.sidebar {
    width: var(--sidebar-width);
    background-color: var(--bg-panel);
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.sidebar-brand {
    height: var(--header-height);
    display: flex;
    align-items: center;
    padding: 0 20px;
    border-bottom: 1px solid var(--border-color);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-active);
}

.brand-logo {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex: 0 0 auto;
    border-radius: 6px;
}

.sidebar-menu {
    list-style: none;
    padding: 20px 0;
    margin: 0;
    flex-grow: 1;
    overflow-y: auto;
}

.sidebar-menu li {
    margin-bottom: 5px;
    padding: 0 15px;
}

.sidebar-menu a {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    border-radius: 8px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar-menu a i {
    width: 20px;
    margin-right: 10px;
    font-size: 16px;
    text-align: center;
}

.sidebar-menu li.active a,
.sidebar-menu a:hover {
    background-color: var(--sidebar-hover-bg);
    color: var(--text-active);
    transform: translateX(4px);
}

.sidebar-section-title {
    padding: 10px 30px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 700;
}

/* Main Panel */
.main-panel {
    flex-grow: 1;
    margin-left: var(--sidebar-width);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header Styling */
.header {
    height: var(--header-height);
    background-color: var(--bg-panel);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    position: sticky;
    top: 0;
    z-index: 900;
}

.header-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
}

.header-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.notification-toggle {
    position: relative;
}

.notification-badge {
    position: absolute;
    top: -3px;
    right: -3px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: 999px;
    background-color: var(--color-danger);
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.notification-menu {
    width: min(360px, calc(100vw - 24px));
    border-radius: 12px;
    overflow: hidden;
}

.notification-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-color);
    background-color: var(--bg-panel);
    font-size: 13px;
}

.notification-empty,
.notification-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    text-decoration: none;
    color: inherit;
    background-color: var(--bg-panel);
}

.notification-item + .notification-item {
    border-top: 1px solid var(--border-color);
}

.notification-item:hover {
    background-color: rgba(13, 110, 253, 0.04);
}

.notification-icon {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(13, 110, 253, 0.08);
}

.notification-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.notification-copy strong {
    font-size: 13px;
    color: var(--text-dark);
}

.notification-copy small {
    font-size: 12px;
    color: var(--text-muted);
}

.header-user-info {
    text-align: right;
}

.header-username {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
    display: block;
}

.header-role {
    font-size: 11px;
    color: var(--text-muted);
    display: block;
}

/* Content Body */
.content-wrapper {
    padding: 24px;
    flex-grow: 1;
    min-width: 0;
}

/* KPI Cards Layout */
.kpi-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 24px;
}

.kpi-card {
    border-radius: 12px;
    padding: 20px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.kpi-card::after {
    content: '';
    position: absolute;
    right: -10px;
    bottom: -10px;
    font-size: 80px;
    opacity: 0.15;
    font-family: "FontAwesome";
}

.kpi-card.purple { background-color: var(--card-purple); }
.kpi-card.purple::after { content: "\f07a"; } /* shopping-cart */

.kpi-card.teal { background-color: var(--card-teal); }
.kpi-card.teal::after { content: "\f201"; } /* line-chart */

.kpi-card.green { background-color: var(--card-green); }
.kpi-card.green::after { content: "\f155"; } /* dollar */

.kpi-card.orange { background-color: var(--card-orange); }
.kpi-card.orange::after { content: "\f071"; } /* warning */

.kpi-title {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 700;
    opacity: 0.85;
}

.kpi-value {
    font-size: 24px;
    font-weight: 700;
    margin: 5px 0;
}

.kpi-subtitle {
    font-size: 11px;
    opacity: 0.8;
}

/* Content Box/Panel */
.card-panel {
    background-color: var(--bg-panel);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    margin-bottom: 24px;
    padding: 24px;
}

.card-panel-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Cohesive Table Styling */
.table, .custom-table {
    width: 100% !important;
    border-collapse: collapse !important;
    margin-bottom: 1rem !important;
}

.table th, .custom-table th {
    background-color: var(--table-header-bg) !important;
    color: var(--text-dark) !important;
    font-weight: 700 !important;
    font-size: 11px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.8px !important;
    padding: 10px 12px !important;
    border-bottom: 2px solid var(--border-color) !important;
    border-top: none !important;
    vertical-align: middle !important;
    text-align: left;
}

.table td, .custom-table td {
    padding: 10px 12px !important;
    border-bottom: 1px solid var(--border-color) !important;
    font-size: 13px !important;
    color: var(--text-dark) !important;
    vertical-align: middle !important;
}

.table tbody tr:hover, .custom-table tbody tr:hover {
    background-color: rgba(13, 110, 253, 0.02) !important;
}

.table-responsive {
    border-radius: 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* POS Catalog Card Premium Hover */
.pos-product-item .card {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.pos-product-item .card:hover {
    transform: translateY(-2px);
    border-color: var(--text-active) !important;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.08);
}

/* Quick Actions Area */
.quick-action-btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    gap: 8px;
    transition: all 0.2s ease;
}

.quick-action-btn.primary {
    background-color: #e3f2fd;
    color: #0d6efd;
}

.quick-action-btn.primary:hover {
    background-color: #bbdefb;
}

/* Custom Forms */
.form-group {
    margin-bottom: 15px;
}

.form-label {
    font-weight: 600;
    font-size: 12px;
    color: var(--text-dark);
    margin-bottom: 6px;
    display: block;
}

.form-control {
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 13px;
    padding: 8px 12px;
    width: 100%;
    box-sizing: border-box;
    transition: border-color 0.2s ease;
}

.form-control:focus {
    border-color: var(--text-active);
    outline: none;
    box-shadow: 0 0 0 0.18rem rgba(13, 110, 253, 0.12);
}

.form-select {
    border-radius: 6px;
    font-size: 13px;
    min-height: 38px;
}

.page-toolbar {
    margin-bottom: 1.5rem;
}

.filter-toolbar {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 20px;
    align-items: end;
}

.filter-span-1 { grid-column: span 1; }
.filter-span-2 { grid-column: span 2; }
.filter-span-3 { grid-column: span 3; }
.filter-span-4 { grid-column: span 4; }
.filter-span-5 { grid-column: span 5; }
.filter-span-6 { grid-column: span 6; }

.filter-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.table-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.stats-card {
    height: 100%;
    border-radius: 12px;
}

.stats-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
}

.empty-state-row {
    padding: 2rem 1rem !important;
    font-size: 13px;
}

.scope-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    background-color: var(--bg-primary-light);
    color: var(--text-active);
    font-size: 12px;
    font-weight: 600;
}

.mini-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.mini-stat-card {
    background-color: var(--bg-panel);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 18px;
}

.mini-stat-label {
    display: block;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
}

.mini-stat-value {
    display: block;
    color: var(--text-dark);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.1;
}

.mini-stat-note {
    display: block;
    color: var(--text-muted);
    font-size: 12px;
    margin-top: 6px;
}

.action-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.action-tile {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-panel);
    text-decoration: none;
    min-height: 92px;
}

.action-tile:hover {
    border-color: rgba(13, 110, 253, 0.22);
    background-color: rgba(13, 110, 253, 0.03);
}

.action-tile-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border-radius: 10px;
    background-color: var(--bg-primary-light);
    color: var(--text-active);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.action-tile-copy {
    min-width: 0;
}

.action-tile-copy strong {
    display: block;
    font-size: 13px;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.action-tile-copy span {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.4;
}

.alert-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.alert-list-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-panel);
    text-decoration: none;
}

.alert-list-item:hover {
    background-color: rgba(13, 110, 253, 0.03);
}

.alert-list-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(13, 110, 253, 0.08);
    flex: 0 0 36px;
}

.alert-list-copy {
    min-width: 0;
}

.alert-list-copy strong {
    display: block;
    color: var(--text-dark);
    font-size: 13px;
    margin-bottom: 4px;
}

.alert-list-copy span {
    display: block;
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.45;
}

body.login-page {
    background:
        radial-gradient(circle at top, rgba(13, 110, 253, 0.08), transparent 34%),
        var(--bg-layout);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.login-card {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
    background-color: var(--bg-panel);
    border: 1px solid rgba(148, 163, 184, 0.18);
    padding: 36px 32px 32px;
}

.login-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.login-brand-logo,
.login-brand-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
}

.login-brand-logo {
    object-fit: contain;
    background-color: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.25);
    padding: 8px;
}

.login-brand-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(13, 110, 253, 0.1);
    color: var(--text-active);
    font-size: 24px;
}

.login-helper {
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 24px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .sidebar {
        left: -250px;
        box-shadow: 0 14px 28px rgba(15, 23, 42, 0.18);
    }
    .sidebar.active {
        left: 0;
    }
    .main-panel {
        margin-left: 0;
    }
    .header {
        padding: 0 14px;
        gap: 10px;
    }
    .header-title {
        display: inline-flex;
        align-items: center;
        min-width: 0;
        font-size: 15px;
        line-height: 1.2;
    }
    .header-title img,
    .header-title i {
        flex: 0 0 auto;
    }
    .content-wrapper {
        padding: 16px;
    }
    .notification-menu {
        width: min(320px, calc(100vw - 18px));
    }
    .card-panel {
        padding: 16px;
        border-radius: 10px;
    }
    .login-card {
        padding: 28px 20px 24px;
        border-radius: 14px;
    }
    .card-panel-title {
        gap: 8px;
        align-items: flex-start;
        flex-direction: column;
    }
    .kpi-row {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .mini-stat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
    .filter-toolbar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .filter-span-1,
    .filter-span-2,
    .filter-span-3,
    .filter-span-4,
    .filter-span-5,
    .filter-span-6 {
        grid-column: span 1;
    }
    .action-grid {
        grid-template-columns: 1fr;
    }
    .kpi-card {
        min-height: 104px;
    }
    .table th,
    .custom-table th,
    .table td,
    .custom-table td {
        white-space: nowrap;
    }
}

/* Dark Theme Variables & Styles */
[data-theme="dark"] {
    --bg-layout: #0b0f19;
    --bg-panel: #151f32;
    --border-color: #233554;
    
    --text-dark: #f8fafc;
    --text-muted: #8892b0;
    --text-active: #38bdf8;
    
    --bg-primary-light: rgba(56, 189, 248, 0.12);
    --bg-success-light: rgba(74, 222, 128, 0.12);
    --bg-danger-light: rgba(248, 113, 113, 0.12);
    --bg-warning-light: rgba(253, 224, 71, 0.12);
    
    --table-header-bg: #1d2b45;
    --sidebar-hover-bg: #1e2d4a;
    --footer-bg: #151f32;
    
    --card-purple: #2e3a87;
    --card-teal: #00838f;
    --card-green: #2e7d32;
    --card-orange: #ef6c00;
}

[data-theme="dark"] .form-control {
    background-color: #0b0f19;
    border-color: #233554;
    color: #f8fafc;
}
[data-theme="dark"] .form-select {
    background-color: #0b0f19;
    border-color: #233554;
    color: #f8fafc;
}
[data-theme="dark"] .form-control:focus {
    background-color: #0b0f19;
    border-color: var(--text-active);
    color: #f8fafc;
}
[data-theme="dark"] .form-select:focus {
    background-color: #0b0f19;
    border-color: var(--text-active);
    color: #f8fafc;
}
[data-theme="dark"] select.form-control option {
    background-color: #151f32;
    color: #f8fafc;
}
[data-theme="dark"] .btn-light {
    background-color: #1d2b45;
    border-color: #233554;
    color: #f8fafc;
}
[data-theme="dark"] .btn-light:hover {
    background-color: #233554;
    border-color: #233554;
    color: #ffffff;
}
[data-theme="dark"] .dropdown-menu {
    background-color: #151f32;
    border-color: #233554;
    color: #f8fafc;
}
[data-theme="dark"] .notification-menu-header,
[data-theme="dark"] .notification-empty,
[data-theme="dark"] .notification-item,
[data-theme="dark"] .mini-stat-card,
[data-theme="dark"] .action-tile,
[data-theme="dark"] .alert-list-item {
    background-color: #151f32;
    border-color: #233554;
}
[data-theme="dark"] .notification-item:hover,
[data-theme="dark"] .action-tile:hover,
[data-theme="dark"] .alert-list-item:hover {
    background-color: #1d2b45;
}
[data-theme="dark"] .notification-copy strong,
[data-theme="dark"] .action-tile-copy strong,
[data-theme="dark"] .alert-list-copy strong,
[data-theme="dark"] .mini-stat-value {
    color: #f8fafc;
}
[data-theme="dark"] .notification-copy small,
[data-theme="dark"] .action-tile-copy span,
[data-theme="dark"] .alert-list-copy span,
[data-theme="dark"] .mini-stat-label,
[data-theme="dark"] .mini-stat-note {
    color: var(--text-muted);
}
[data-theme="dark"] .dropdown-item {
    color: #f8fafc;
}
[data-theme="dark"] .dropdown-item:hover {
    background-color: #1d2b45;
    color: var(--text-active);
}
[data-theme="dark"] .dropdown-divider {
    border-color: #233554;
}
[data-theme="dark"] .modal-content {
    background-color: #151f32;
    border-color: #233554;
    color: #f8fafc;
}
[data-theme="dark"] .modal-header,
[data-theme="dark"] .modal-footer {
    border-color: #233554;
}
[data-theme="dark"] .login-card {
    background-color: #151f32;
    border-color: #233554;
    box-shadow: 0 24px 50px rgba(2, 6, 23, 0.35);
}
[data-theme="dark"] .login-brand-logo {
    background-color: #0b0f19;
    border-color: #233554;
}
[data-theme="dark"] .login-brand-icon {
    background-color: rgba(56, 189, 248, 0.16);
}
[data-theme="dark"] .login-helper {
    color: var(--text-muted);
}
[data-theme="dark"] .btn-close {
    filter: invert(1);
}
[data-theme="dark"] .breadcrumb-item a {
    color: var(--text-active);
}
[data-theme="dark"] .breadcrumb-item.active {
    color: var(--text-muted);
}
[data-theme="dark"] hr {
    background-color: var(--border-color);
    opacity: 0.2;
}
[data-theme="dark"] .nav-link:not(.active) {
    color: var(--text-muted) !important;
}
[data-theme="dark"] .nav-link:not(.active):hover {
    color: var(--text-active) !important;
}
[data-theme="dark"] .btn-link {
    color: var(--text-active) !important;
}

/* Unified Form Validation & Alert Styling */
.form-feedback-error {
    font-size: 12px;
    color: var(--color-danger);
    margin-top: 5px;
    font-weight: 500;
}
.validation-warning-highlight {
    border-color: var(--color-warning) !important;
    box-shadow: 0 0 0 0.18rem rgba(255, 193, 7, 0.15) !important;
}
.validation-error-highlight {
    border-color: var(--color-danger) !important;
    box-shadow: 0 0 0 0.18rem rgba(220, 53, 69, 0.15) !important;
}

/* Empty States */
.empty-state-panel {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-muted);
}
.empty-state-icon {
    font-size: 48px;
    color: var(--border-color);
    margin-bottom: 15px;
}

/* Standard Layout Borders */
.standard-border {
    border: 1px solid var(--border-color);
}
.standard-border-bottom {
    border-bottom: 1px solid var(--border-color);
}
.standard-border-top {
    border-top: 1px solid var(--border-color);
}

/* Navigation Pills / Tabs */
.nav-pills-container {
    background-color: var(--bg-panel);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    padding: 8px;
    margin-bottom: 24px;
}
.nav-pills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.nav-pills-link {
    display: inline-flex;
    align-items: center;
    color: var(--text-muted);
    background-color: transparent;
    font-weight: 600;
    border-radius: 6px;
    padding: 8px 16px;
    text-decoration: none;
    transition: all 0.2s ease;
}
.nav-pills-link:hover {
    color: var(--text-active);
    background-color: var(--sidebar-hover-bg);
}
.nav-pills-link.active {
    background-color: var(--text-active) !important;
    color: #ffffff !important;
}


