/**
 * Surabhi Exports — Task Management Design System
 * Extends the Sash admin theme with brand tokens, KPI cards, badges, and dark mode refinements.
 */

:root {
    /* Brand / primary (blue–indigo) */
    --se-primary: #2563eb;
    --se-primary-hover: #1d4ed8;
    --se-primary-soft: rgba(37, 99, 235, 0.12);
    --se-indigo: #4338ca;
    --se-navy: #0f1c3f;
    --se-navy-soft: #152347;

    /* Surfaces — light */
    --se-bg: #f3f5f9;
    --se-surface: #ffffff;
    --se-surface-muted: #f8fafc;
    --se-border: #e2e8f0;
    --se-border-strong: #cbd5e1;
    --se-shadow: 0 4px 16px rgba(15, 28, 63, 0.06);
    --se-shadow-sm: 0 1px 3px rgba(15, 28, 63, 0.06);

    /* Text */
    --se-text: #0f172a;
    --se-text-secondary: #475569;
    --se-text-muted: #64748b;
    --se-text-inverse: #f8fafc;

    /* Semantic */
    --se-success: #0d9488;
    --se-warning: #ea580c;
    --se-danger: #dc2626;
    --se-info: #2563eb;
    --se-purple: #7c3aed;
    --se-teal: #0d9488;
    --se-orange: #ea580c;
    --se-red: #dc2626;
    --se-blue: #2563eb;

    /* Layout */
    --se-radius: 12px;
    --se-radius-sm: 8px;
    --se-radius-pill: 999px;
    --se-sidebar-width: 270px;
    --se-header-height: 64px;
    --se-space-1: 0.25rem;
    --se-space-2: 0.5rem;
    --se-space-3: 0.75rem;
    --se-space-4: 1rem;
    --se-space-5: 1.25rem;
    --se-space-6: 1.5rem;

    /* Override Sash primary toward Surabhi blue */
    --primary-bg-color: #2563eb !important;
    --primary-rgb: 37, 99, 235;
    --primary01: rgba(37, 99, 235, 0.1);
    --primary02: rgba(37, 99, 235, 0.2);
    --primary08: rgba(37, 99, 235, 0.8);
}

/* Align existing Sash body tokens in light mode */
body.light-mode,
body:not(.dark-mode):not(.transparent-mode) {
    --se-bg: #f3f5f9;
    --se-surface: #ffffff;
    --se-surface-muted: #f8fafc;
    --se-border: #e2e8f0;
    --se-text: #0f172a;
    --se-text-secondary: #475569;
    --se-text-muted: #64748b;
    background-color: var(--se-bg) !important;
    color: var(--se-text);
}

body.dark-mode {
    --se-bg: #0b1224;
    --se-surface: #141c31;
    --se-surface-muted: #1a243c;
    --se-border: #2a3654;
    --se-border-strong: #3b496a;
    --se-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    --se-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.35);
    --se-text: #e8eefc;
    --se-text-secondary: #b6c2dc;
    --se-text-muted: #8b9abb;
    --se-navy: #070d1c;
    --se-navy-soft: #0d1528;
    --primary-bg-color: #3b82f6 !important;
    --primary-rgb: 59, 130, 246;
    background-color: var(--se-bg) !important;
    color: var(--se-text);
}

/* ---------- App shell ---------- */
.app-content {
    background: var(--se-bg);
}

.page-header .page-title {
    color: var(--se-text);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.se-page-subtitle {
    color: var(--se-text-muted);
    font-size: 0.875rem;
    margin: 0;
}

/* ---------- Sidebar (navy) ---------- */
.app-sidebar {
    background: var(--se-navy) !important;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.app-sidebar .side-header {
    background: var(--se-navy) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    min-height: var(--se-header-height);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
}

.se-brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none !important;
    color: #fff !important;
    width: 100%;
}

.se-brand--full {
    gap: 0;
    justify-content: center;
    background: #fff;
    border-radius: 10px;
    padding: 0.45rem 0.55rem;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.18);
}

.se-brand__logo {
    display: block;
    width: 100%;
    max-width: 188px;
    height: auto;
    max-height: 46px;
    object-fit: contain;
}

.se-brand__mark {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.25);
    padding: 2px;
}

.se-brand__mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.se-brand__text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    min-width: 0;
}

.se-brand__name {
    font-size: 0.92rem;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.se-brand__tag {
    font-size: 0.68rem;
    opacity: 0.7;
    font-weight: 500;
}

.sidebar-mini.sidenav-toggled .se-brand--full {
    padding: 0.3rem;
    border-radius: 8px;
}

.sidebar-mini.sidenav-toggled .se-brand__logo-full {
    display: none;
}

.sidebar-mini.sidenav-toggled .se-brand__logo-mark {
    display: block !important;
    width: 32px;
    height: 32px;
    max-width: 32px;
    max-height: 32px;
}

.se-brand__logo-mark {
    display: none;
}

.sidebar-mini.sidenav-toggled .se-brand__text {
    display: none;
}

.sidebar-mini.sidenav-toggled .se-brand {
    justify-content: center;
}

.sidebar-mini.sidenav-toggled .se-sidebar-footer .se-signout-btn span {
    display: none;
}

.sidebar-mini.sidenav-toggled .se-signout-btn {
    justify-content: center;
    width: auto;
    margin: 0 auto;
    padding: 0.7rem;
}

.app-sidebar .side-menu__item,
.app-sidebar .slide-item {
    color: rgba(232, 238, 252, 0.78) !important;
    border-radius: 10px;
    margin: 2px 10px;
    border: 1px solid transparent;
    outline: none !important;
    box-shadow: none !important;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

/* Nested submenu rows: full-width highlight, no leftover bullets/focus rings */
.app-sidebar .slide-menu {
    background: transparent !important;
    padding-inline-start: 12px !important;
    padding-inline-end: 0 !important;
}

.app-sidebar .slide-menu .slide-item,
.app-sidebar .slide-menu .side-menu__item,
.app-sidebar .sub-slide-menu .slide-item,
.app-sidebar .sub-slide-menu .sub-side-menu__item,
.app-sidebar .sub-slide-menu2 .slide-item,
.app-sidebar .sub-slide-menu2 .sub-side-menu__item {
    display: flex !important;
    width: calc(100% - 12px) !important;
    margin: 2px 6px 2px 6px !important;
    padding: 0.55rem 0.85rem !important;
    box-sizing: border-box;
}

.app-sidebar .slide-menu li .slide-item:before,
.app-sidebar .slide-menu li .side-menu__item:before,
.app-sidebar .sub-slide-menu li a:before,
.app-sidebar .sub-slide-menu2 li a:before {
    content: none !important;
    display: none !important;
}

.app-sidebar a:focus,
.app-sidebar a:focus-visible,
.app-sidebar .slide-item:focus,
.app-sidebar .side-menu__item:focus {
    outline: none !important;
    box-shadow: none !important;
}

.app-sidebar .side-menu__icon {
    color: rgba(232, 238, 252, 0.65) !important;
}

.app-sidebar .side-menu__item:hover,
.app-sidebar .slide-item:hover,
.app-sidebar .slide-menu li:hover > a {
    background: rgba(255, 255, 255, 0.08) !important;
    color: #fff !important;
    border-color: transparent !important;
}

.app-sidebar .side-menu__item:hover .side-menu__icon,
.app-sidebar .slide-item:hover .side-menu__icon {
    color: #fff !important;
}

.app-sidebar li > a.active,
.app-sidebar .slide-menu li.active > a,
.app-sidebar .side-menu__item.active,
.app-sidebar .slide-item.active {
    background: rgba(37, 99, 235, 0.42) !important;
    color: #fff !important;
    font-weight: 600;
    border-color: rgba(147, 197, 253, 0.35) !important;
}

.app-sidebar .side-menu__item.active .side-menu__icon,
.app-sidebar .slide-item.active .side-menu__icon,
.app-sidebar .slide-menu li.active > a .side-menu__icon {
    color: #93c5fd !important;
}

.app-sidebar .sub-category h3 {
    color: rgba(148, 163, 184, 0.85) !important;
    letter-spacing: 0.06em;
    font-size: 0.7rem;
    text-transform: uppercase;
}

.app-sidebar .side-menu {
    padding-bottom: 5rem;
}

.se-sidebar-footer {
    position: sticky;
    bottom: 0;
    padding: 0.75rem 0.85rem 1rem;
    background: linear-gradient(180deg, transparent, var(--se-navy) 35%);
    margin-top: auto;
}

.se-signout-btn {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    width: calc(100% - 20px);
    margin: 0 10px;
    padding: 0.7rem 0.9rem;
    border-radius: 10px;
    border: 1px solid rgba(248, 113, 113, 0.25);
    background: rgba(220, 38, 38, 0.12);
    color: #fca5a5 !important;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.15s ease;
}

.se-signout-btn:hover {
    background: rgba(220, 38, 38, 0.22);
    color: #fecaca !important;
}

.se-signout-btn i {
    color: #f87171;
}

/* ---------- Header ---------- */
.app-header.header {
    background: var(--se-surface) !important;
    border-bottom: 1px solid var(--se-border);
    box-shadow: var(--se-shadow-sm);
    min-height: var(--se-header-height);
}

.se-header-title-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 0.5rem;
    min-width: 0;
}

.se-header-title {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--se-text);
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.se-header-desc {
    margin: 0;
    font-size: 0.75rem;
    color: var(--se-text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.header .nav-link.icon {
    color: var(--se-text-secondary) !important;
    border-radius: 10px;
}

.header .nav-link.icon:hover {
    background: var(--se-primary-soft);
    color: var(--se-primary) !important;
}

.se-notify-badge {
    position: absolute;
    top: 6px;
    right: 6px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: var(--se-radius-pill);
    background: var(--se-danger);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    line-height: 16px;
    text-align: center;
}

.se-profile-meta {
    display: none;
    flex-direction: column;
    margin-left: 0.55rem;
    line-height: 1.15;
    text-align: left;
}

@media (min-width: 992px) {
    .se-profile-meta {
        display: flex;
    }
}

.se-profile-meta__name {
    font-size: 0.85rem;
    font-weight: 650;
    color: var(--se-text);
}

.se-profile-meta__role {
    font-size: 0.72rem;
    color: var(--se-text-muted);
}

.se-avatar-fallback {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ea580c, #f59e0b);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

/* Theme switcher dropdown */
.se-theme-menu {
    min-width: 180px;
    padding: 0.4rem;
    border: 1px solid var(--se-border);
    border-radius: var(--se-radius-sm);
    background: var(--se-surface);
    box-shadow: var(--se-shadow);
}

.se-theme-menu .dropdown-item {
    border-radius: 8px;
    font-size: 0.875rem;
    color: var(--se-text);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.7rem;
}

.se-theme-menu .dropdown-item.active,
.se-theme-menu .dropdown-item:hover {
    background: var(--se-primary-soft);
    color: var(--se-primary);
}

/* ---------- Cards ---------- */
.card,
.se-card {
    background: var(--se-surface) !important;
    border: 1px solid var(--se-border) !important;
    border-radius: var(--se-radius) !important;
    box-shadow: var(--se-shadow-sm) !important;
    color: var(--se-text);
}

.card .card-header,
.card .card-title,
.card .card-body {
    color: var(--se-text);
}

.card .card-header {
    border-bottom-color: var(--se-border) !important;
    background: transparent !important;
}

.se-card-title {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0;
    color: var(--se-text);
}

.se-card-subtitle {
    font-size: 0.78rem;
    color: var(--se-text-muted);
    margin: 0.15rem 0 0;
}

/* ---------- KPI cards ---------- */
.se-kpi-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1rem;
}

@media (max-width: 1399px) {
    .se-kpi-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .se-kpi-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
    }
}

.se-kpi {
    position: relative;
    overflow: hidden;
    border-radius: var(--se-radius);
    padding: 1.1rem 1.15rem;
    color: #fff;
    min-height: 110px;
    box-shadow: var(--se-shadow);
    text-decoration: none !important;
    display: block;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.se-kpi:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(15, 28, 63, 0.18);
    color: #fff;
}

.se-kpi__label {
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0.92;
    margin-bottom: 0.35rem;
}

.se-kpi__value {
    font-size: 1.75rem;
    font-weight: 750;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.se-kpi__trend {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 0.45rem;
    font-size: 0.72rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.18);
    border-radius: var(--se-radius-pill);
    padding: 0.15rem 0.5rem;
}

.se-kpi__icon {
    position: absolute;
    right: 0.85rem;
    top: 0.85rem;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.se-kpi--total { background: linear-gradient(135deg, #1e3a8a, #2563eb); }
.se-kpi--progress { background: linear-gradient(135deg, #c2410c, #ea580c); }
.se-kpi--approval { background: linear-gradient(135deg, #6d28d9, #7c3aed); }
.se-kpi--completed { background: linear-gradient(135deg, #0f766e, #14b8a6); }
.se-kpi--overdue { background: linear-gradient(135deg, #b91c1c, #ef4444); }
.se-kpi--hold { background: linear-gradient(135deg, #1d4ed8, #3b82f6); }

body.dark-mode .se-kpi {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

/* ---------- Filters ---------- */
.se-filters {
    background: var(--se-surface);
    border: 1px solid var(--se-border);
    border-radius: var(--se-radius);
    padding: 1rem 1.1rem;
    box-shadow: var(--se-shadow-sm);
    margin-bottom: 1.25rem;
}

.se-filters label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--se-text-muted);
    margin-bottom: 0.3rem;
}

.se-filters .form-control,
.se-filters .form-select,
.se-filters .select2-container--default .select2-selection--single {
    border-radius: var(--se-radius-sm) !important;
    border-color: var(--se-border) !important;
    background: var(--se-surface-muted) !important;
    color: var(--se-text) !important;
    min-height: 38px;
}

body.dark-mode .select2-container--default .select2-selection--single .select2-selection__rendered,
body.dark-mode .select2-container--default .select2-results__option {
    color: var(--se-text);
}

body.dark-mode .select2-dropdown {
    background: var(--se-surface);
    border-color: var(--se-border);
}

/* ---------- Badges ---------- */
.se-badge {
    display: inline-flex;
    align-items: center;
    border-radius: var(--se-radius-pill);
    padding: 0.2rem 0.65rem;
    font-size: 0.72rem;
    font-weight: 650;
    line-height: 1.3;
    white-space: nowrap;
}

.se-badge--status-progress,
.se-badge--info { background: rgba(37, 99, 235, 0.12); color: #1d4ed8; }
.se-badge--status-open { background: rgba(100, 116, 139, 0.15); color: #475569; }
.se-badge--status-completed,
.se-badge--success { background: rgba(13, 148, 136, 0.14); color: #0f766e; }
.se-badge--status-overdue,
.se-badge--danger { background: rgba(220, 38, 38, 0.12); color: #b91c1c; }
.se-badge--status-hold { background: rgba(37, 99, 235, 0.12); color: #1e40af; }
.se-badge--status-approval,
.se-badge--purple { background: rgba(124, 58, 237, 0.12); color: #6d28d9; }
.se-badge--priority-high,
.se-badge--warning { background: rgba(234, 88, 12, 0.14); color: #c2410c; }
.se-badge--priority-critical { background: rgba(220, 38, 38, 0.14); color: #b91c1c; }
.se-badge--priority-medium { background: rgba(37, 99, 235, 0.12); color: #1d4ed8; }
.se-badge--priority-low,
.se-badge--normal { background: rgba(13, 148, 136, 0.12); color: #0f766e; }

body.dark-mode .se-badge--status-progress,
body.dark-mode .se-badge--info { background: rgba(59, 130, 246, 0.2); color: #93c5fd; }
body.dark-mode .se-badge--status-open { background: rgba(148, 163, 184, 0.18); color: #cbd5e1; }
body.dark-mode .se-badge--status-completed,
body.dark-mode .se-badge--success { background: rgba(45, 212, 191, 0.18); color: #5eead4; }
body.dark-mode .se-badge--status-overdue,
body.dark-mode .se-badge--danger { background: rgba(248, 113, 113, 0.18); color: #fca5a5; }
body.dark-mode .se-badge--status-hold { background: rgba(59, 130, 246, 0.18); color: #93c5fd; }
body.dark-mode .se-badge--status-approval,
body.dark-mode .se-badge--purple { background: rgba(167, 139, 250, 0.2); color: #c4b5fd; }
body.dark-mode .se-badge--priority-high,
body.dark-mode .se-badge--warning { background: rgba(251, 146, 60, 0.2); color: #fdba74; }
body.dark-mode .se-badge--priority-critical { background: rgba(248, 113, 113, 0.2); color: #fca5a5; }
body.dark-mode .se-badge--priority-medium { background: rgba(59, 130, 246, 0.2); color: #93c5fd; }
body.dark-mode .se-badge--priority-low,
body.dark-mode .se-badge--normal { background: rgba(45, 212, 191, 0.18); color: #5eead4; }

/* ---------- Buttons ---------- */
.btn-primary {
    background-color: var(--se-primary) !important;
    border-color: var(--se-primary) !important;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--se-primary-hover) !important;
    border-color: var(--se-primary-hover) !important;
}

.se-quick-actions .list-group-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    border: 1px solid var(--se-border) !important;
    border-radius: var(--se-radius-sm) !important;
    margin-bottom: 0.55rem;
    background: var(--se-surface-muted) !important;
    color: var(--se-text) !important;
    padding: 0.85rem 1rem;
    text-decoration: none !important;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.se-quick-actions .list-group-item:hover {
    background: var(--se-primary-soft) !important;
    border-color: rgba(37, 99, 235, 0.35) !important;
}

.se-quick-actions__left {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-weight: 600;
    font-size: 0.88rem;
}

.se-quick-actions__icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--se-surface);
    color: var(--se-primary);
    border: 1px solid var(--se-border);
}

/* ---------- Tables ---------- */
.table {
    color: var(--se-text);
}

.table thead th {
    background: var(--se-surface-muted) !important;
    color: var(--se-text-secondary) !important;
    border-color: var(--se-border) !important;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-weight: 700;
}

.table td,
.table th {
    border-color: var(--se-border) !important;
    vertical-align: middle;
}

body.dark-mode .table,
body.dark-mode .dataTables_wrapper,
body.dark-mode .page-link,
body.dark-mode .form-control,
body.dark-mode .form-select,
body.dark-mode .modal-content,
body.dark-mode .dropdown-menu {
    color: var(--se-text);
}

body.dark-mode .modal-content,
body.dark-mode .dropdown-menu {
    background: var(--se-surface);
    border-color: var(--se-border);
}

body.dark-mode .form-control,
body.dark-mode .form-select,
body.dark-mode .page-link {
    background: var(--se-surface-muted);
    border-color: var(--se-border);
    color: var(--se-text);
}

body.dark-mode .drop-heading .text-dark,
body.dark-mode .dropdown-item,
body.dark-mode .text-dark {
    color: var(--se-text) !important;
}

body.dark-mode .text-muted {
    color: var(--se-text-muted) !important;
}

body.dark-mode .table-bordered,
body.dark-mode .dataTables_info,
body.dark-mode .dataTables_length,
body.dark-mode .dataTables_filter label {
    color: var(--se-text-secondary);
}

/* ---------- Dashboard widgets ---------- */
.se-widget-list {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 320px;
    overflow: auto;
}

.se-widget-list li {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--se-border);
}

.se-widget-list li:last-child {
    border-bottom: 0;
}

.se-widget-list__title {
    font-weight: 650;
    font-size: 0.88rem;
    color: var(--se-text);
    margin: 0 0 0.2rem;
}

.se-widget-list__meta {
    font-size: 0.75rem;
    color: var(--se-text-muted);
    margin: 0;
}

.se-empty {
    text-align: center;
    color: var(--se-text-muted);
    padding: 1.5rem 0.5rem;
    font-size: 0.875rem;
}

.se-tabs .nav-link {
    border: 0;
    color: var(--se-text-muted);
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: var(--se-radius-pill) !important;
    padding: 0.4rem 0.85rem;
}

.se-tabs .nav-link.active {
    background: var(--se-primary-soft) !important;
    color: var(--se-primary) !important;
}

.se-chart-wrap {
    position: relative;
    min-height: 240px;
}

.se-donut-center {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    text-align: center;
}

.se-donut-center strong {
    font-size: 1.35rem;
    color: var(--se-text);
    line-height: 1.1;
}

.se-donut-center span {
    font-size: 0.75rem;
    color: var(--se-text-muted);
}

/* Responsive overflow guard */
.main-content.app-content,
.side-app,
.main-container {
    max-width: 100%;
    overflow-x: clip;
}

@media (max-width: 991.98px) {
    .se-header-title-wrap {
        display: none;
    }
}
