/* ============================================
   POS Retail - Blue Theme
   ============================================ */

:root {
    /* Brand blue (login) */
    --primary: #2563EB;
    --primary-dark: #1D4ED8;
    --primary-light: #3B82F6;
    --accent: #2563EB;
    --accent-dark: #1D4ED8;
    --accent-light: #60A5FA;
    --gold: #F59E0B;
    --gold-dark: #D97706;
    --gold-light: #FCD34D;
    --cream: #F8FAFC;
    --cream-dark: #EFF6FF;

    /* Semantic */
    --success: #16A34A;
    --success-dark: #15803D;
    --warning: #F59E0B;
    --danger: #DC2626;
    --info: #2563EB;

    /* Neutral */
    --dark: #111827;
    --gray: #6B7280;
    --gray-light: #9CA3AF;
    --light: #F9FAFB;
    --white: #FFFFFF;
    --border: #E5E7EB;
    --sidebar-bg: #1E3A8A;
    --sidebar-hover: #1E40AF;

    /* Layout */
    --sidebar-width: 260px;
    --sidebar-collapsed: 90px;
    --topbar-height: 62px;
    --border-radius: 10px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(42,59,76,0.08);
    --shadow: 0 4px 14px rgba(42,59,76,0.08);
    --shadow-lg: 0 8px 24px rgba(42,59,76,0.1);
    --shadow-xl: 0 16px 40px rgba(42,59,76,0.12);

    --transition: all 0.2s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--cream);
    color: var(--dark);
    overflow-x: hidden;
}

/* ============================================
   Sidebar
   ============================================ */
.sidebar {
    width: var(--sidebar-width) !important;
    background: var(--sidebar-bg) !important;
    border-right: none !important;
    box-shadow: var(--shadow-lg) !important;
    transition: var(--transition);
    z-index: 1000;
}

.sidebar .nav-item .nav-link {
    padding: 11px 16px;
    color: rgba(255,255,255,0.72) !important;
    font-weight: 500;
    font-size: 14px;
    border-radius: 8px;
    margin: 2px 10px;
    transition: var(--transition);
}

.sidebar .nav-item .nav-link:hover {
    color: #FFFFFF !important;
    background: var(--sidebar-hover) !important;
    transform: none;
}

.sidebar .nav-item .nav-link.active {
    color: #FFFFFF !important;
    background: var(--primary) !important;
    box-shadow: 0 4px 12px rgba(37,99,235,0.35);
    font-weight: 600;
}

.sidebar .nav-item .nav-link i {
    font-size: 16px;
    width: 32px;
    text-align: center;
    margin-right: 8px;
    color: rgba(255,255,255,0.55);
}

.sidebar .nav-item .nav-link.active i,
.sidebar .nav-item .nav-link:hover i {
    color: #FFFFFF;
}

.sidebar-brand {
    padding: 18px 16px !important;
    background: rgba(0,0,0,0.2) !important;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.sidebar-brand-icon {
    background: var(--primary);
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: white;
    box-shadow: 0 4px 12px rgba(37,99,235,0.4);
}

.sidebar-brand-text {
    font-weight: 700;
    font-size: 16px;
    color: white !important;
    letter-spacing: 0.2px;
}

.sidebar-heading {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.45) !important;
    padding: 12px 16px 6px;
}

.sidebar-divider {
    border-top: 1px solid rgba(255,255,255,0.08) !important;
    margin: 6px 12px;
}

.collapse-inner {
    border: none !important;
    box-shadow: var(--shadow-lg) !important;
    border-radius: var(--border-radius) !important;
    background: white;
}

.collapse-item {
    padding: 9px 14px !important;
    font-size: 13px !important;
    color: var(--gray) !important;
    border-radius: 6px !important;
    margin: 2px 6px;
    transition: var(--transition);
}

.collapse-item:hover {
    background: #EFF6FF !important;
    color: var(--primary-dark) !important;
    transform: none;
}

.collapse-item.active {
    background: var(--primary) !important;
    color: white !important;
    font-weight: 600;
}

/* ============================================
   Topbar
   ============================================ */
.topbar {
    height: var(--topbar-height) !important;
    background: white !important;
    border-bottom: 3px solid var(--primary);
    box-shadow: var(--shadow-sm) !important;
    padding: 0 24px;
}

.topbar .nav-link {
    color: var(--gray) !important;
    padding: 8px 12px;
    border-radius: 8px;
    transition: var(--transition);
}

.topbar .nav-link:hover {
    background: var(--cream);
    color: var(--primary) !important;
}

.topbar .badge-counter {
    font-size: 10px;
    padding: 4px 8px;
    border-radius: 50px;
    background: var(--accent);
}

/* ============================================
   Cards
   ============================================ */
.card {
    border: none !important;
    border-radius: var(--border-radius) !important;
    box-shadow: var(--shadow) !important;
    transition: var(--transition);
    overflow: hidden;
}

.card:hover {
    box-shadow: var(--shadow-lg) !important;
    transform: none;
}

.card-header {
    background: white !important;
    border-bottom: 1px solid rgba(0,0,0,0.05) !important;
    padding: 16px 20px !important;
}

.card-body {
    padding: 20px !important;
}

/* Dashboard Cards */
.border-left-primary {
    border-left: 5px solid var(--primary) !important;
    border-radius: var(--border-radius) !important;
}

.border-left-success {
    border-left: 5px solid var(--success) !important;
    border-radius: var(--border-radius) !important;
}

.border-left-warning {
    border-left: 5px solid var(--gold) !important;
    border-radius: var(--border-radius) !important;
}

.border-left-danger {
    border-left: 5px solid var(--accent) !important;
    border-radius: var(--border-radius) !important;
}

.card .text-xs {
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px;
}

.card .h5 {
    font-size: 20px !important;
    font-weight: 800 !important;
    color: var(--dark);
}

/* Stat Cards */
.stat-card {
    background: white;
    border: none;
    border-radius: var(--border-radius);
    padding: 22px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
}

.stat-card.primary::before { background: var(--primary); }
.stat-card.success::before { background: var(--success); }
.stat-card.warning::before { background: var(--warning); }
.stat-card.danger::before { background: var(--danger); }

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.stat-card .stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
}

.stat-card.primary .stat-icon { background: var(--primary); box-shadow: 0 4px 12px rgba(37,99,235,0.3); }
.stat-card.success .stat-icon { background: var(--success); box-shadow: 0 4px 12px rgba(4,120,87,0.3); }
.stat-card.warning .stat-icon { background: var(--warning); box-shadow: 0 4px 12px rgba(245,158,11,0.3); }
.stat-card.danger .stat-icon { background: var(--danger); box-shadow: 0 4px 12px rgba(239,68,68,0.3); }

.stat-card .stat-value {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark);
    margin-top: 12px;
}

.stat-card .stat-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: var(--gray);
    margin-top: 4px;
}

/* ============================================
   Tables
   ============================================ */
.table {
    border-collapse: separate;
    border-spacing: 0;
}

.table thead th {
    background: var(--primary);
    color: white;
    border: none !important;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 13px 16px;
    white-space: nowrap;
}

.table thead th:first-child {
    border-radius: 8px 0 0 0;
}

.table thead th:last-child {
    border-radius: 0 8px 0 0;
}

.table tbody td {
    border: none !important;
    border-bottom: 1px solid rgba(0,0,0,0.05) !important;
    padding: 14px 16px;
    font-size: 14px;
    vertical-align: middle;
    transition: var(--transition);
}

.table tbody tr:hover td {
    background: #EFF6FF;
}

.table tbody tr:last-child td {
    border-bottom: none !important;
}

.table tfoot th {
    background: #EFF6FF;
    border: none !important;
    font-weight: 700;
    padding: 12px 16px;
    color: var(--primary-dark);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    border-radius: 8px !important;
    font-weight: 600;
    font-size: 14px;
    padding: 9px 18px;
    transition: var(--transition);
    border: none;
    box-shadow: var(--shadow-sm);
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.btn-primary {
    background: var(--primary) !important;
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark) !important;
    box-shadow: 0 4px 14px rgba(37,99,235,0.35);
}

.btn-success {
    background: var(--success) !important;
    color: white;
}

.btn-success:hover {
    background: var(--success-dark) !important;
    box-shadow: 0 4px 14px rgba(22,163,74,0.35);
}

.btn-warning {
    background: var(--warning) !important;
    color: white;
}

.btn-warning:hover {
    background: var(--gold-dark) !important;
}

.btn-danger {
    background: var(--danger) !important;
    color: white;
}

.btn-danger:hover {
    background: #B91C1C !important;
    box-shadow: 0 4px 14px rgba(220,38,38,0.3);
}

.btn-info {
    background: var(--primary-light) !important;
    color: white;
}

.btn-secondary {
    background: var(--gray) !important;
    color: white;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 6px !important;
}

.btn-icon-split {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-icon-split .icon {
    background: rgba(255,255,255,0.2);
    padding: 8px 12px;
    border-radius: 8px 0 0 8px;
    margin: -10px 8px -10px -20px;
}

/* ============================================
   Forms
   ============================================ */
.form-control {
    border: 1px solid var(--border);
    border-radius: 6px !important;
    padding: 10px 14px;
    font-size: 14px;
    min-height: 42px;
    transition: var(--transition);
    background: white;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
}

.form-control:hover {
    border-color: #D1D5DB;
}

select.form-control {
    appearance: none;
    height: 48px;
    min-height: 48px;
    line-height: 1.4;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%232563EB' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 10px center;
    background-repeat: no-repeat;
    background-size: 20px;
    padding-top: 11px;
    padding-bottom: 11px;
    padding-right: 40px;
    background-color: #fff;
}

label {
    font-weight: 600;
    font-size: 13px;
    color: var(--dark);
    margin-bottom: 6px;
}

/* ============================================
   Badges
   ============================================ */
.badge {
    padding: 6px 12px;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.3px;
    border-radius: 6px;
}

.badge-primary { background: var(--primary); }
.badge-success { background: var(--success); }
.badge-warning { background: var(--warning); color: white; }
.badge-danger { background: var(--danger); }
.badge-info { background: var(--primary-light); }
.badge-secondary { background: var(--gray); }

/* ============================================
   Alerts
   ============================================ */
.alert {
    border: none;
    border-radius: var(--border-radius);
    padding: 16px 20px;
    font-weight: 500;
    box-shadow: var(--shadow-sm);
}

.alert-success { background: #F0FDF4; color: #166534; border-left: 3px solid var(--success); }
.alert-warning { background: #FEFCE8; color: #854D0E; border-left: 3px solid var(--warning); }
.alert-danger { background: #FEF2F2; color: #991B1B; border-left: 3px solid var(--danger); }
.alert-info { background: var(--cream); color: var(--dark); border-left: 3px solid var(--gray); }

/* ============================================
   Modals
   ============================================ */
.modal-content {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-xl);
}

.modal-header {
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 20px 24px;
    background: var(--cream);
}

.modal-body {
    padding: 24px;
}

.modal-footer {
    border-top: 1px solid rgba(0,0,0,0.05);
    padding: 16px 24px;
}

/* ============================================
   Login Page — split layout, white + solid blue
   ============================================ */
body.login-page {
    min-height: 100vh;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    font-family: 'Inter', sans-serif;
}

.login-container {
    max-width: 900px;
    width: 100%;
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 14px;
    box-shadow: 0 10px 40px rgba(37, 99, 235, 0.08);
    overflow: hidden;
    animation: fadeInUp 0.35s ease-out;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

.login-left {
    background: var(--primary);
    padding: 48px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    min-height: 100%;
}

.login-left .logo-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
    color: white;
}

.login-left h1 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.login-left > p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 0;
}

.login-left .feature-list {
    margin-top: 28px;
    text-align: left;
    width: 100%;
    max-width: 280px;
}

.login-left .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 14px;
    opacity: 0.95;
}

.login-left .feature-item i {
    color: rgba(255, 255, 255, 0.85);
    margin-right: 10px;
    font-size: 15px;
    flex-shrink: 0;
}

.login-right {
    padding: 48px 40px;
    background: #FFFFFF;
}

.login-right h2 {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
}

.login-right .subtitle {
    color: #6B7280;
    font-size: 14px;
    margin-bottom: 28px;
}

.login-right .input-group {
    position: relative;
}

.login-right .input-group .input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #9CA3AF;
    z-index: 10;
}

.login-right .form-control {
    padding-left: 42px;
    border-color: #D1D5DB;
}

.login-right .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.btn-login {
    width: 100%;
    height: 46px;
    border-radius: 8px;
    background: var(--primary);
    border: none;
    color: white;
    font-weight: 600;
    font-size: 15px;
    margin-top: 4px;
    box-shadow: none;
    transition: background 0.2s ease;
}

.btn-login:hover {
    background: var(--primary-dark);
    transform: none;
    box-shadow: none;
}

.login-right .footer-text {
    text-align: center;
    margin-top: 24px;
    color: #9CA3AF;
    font-size: 12px;
}

.login-page .btn-primary {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
}

.login-page .text-primary {
    color: var(--primary) !important;
}

@media (max-width: 768px) {
    body.login-page {
        padding: 16px;
        align-items: flex-start;
        padding-top: 32px;
    }

    .login-left {
        padding: 32px 24px;
    }

    .login-left .feature-list {
        display: none;
    }

    .login-right {
        padding: 32px 24px;
    }
}

/* ============================================
   Page Headers
   ============================================ */
.page-header {
    margin-bottom: 24px;
}

.text-primary { color: var(--primary) !important; }
.badge-primary { background: var(--primary) !important; }

.page-header h1 {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 4px;
}

.page-header p {
    font-size: 14px;
    color: var(--gray);
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.animate-fadeIn { animation: fadeIn 0.5s ease-out; }
.animate-slideInLeft { animation: slideInLeft 0.5s ease-out; }
.animate-slideInRight { animation: slideInRight 0.5s ease-out; }

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

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 10px;
}

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

/* ============================================
   Sidebar Toggled (Minimize) - Desktop only
   ============================================ */
@media (min-width: 768px) {
    body.sidebar-toggled .sidebar {
        width: var(--sidebar-collapsed) !important;
    }
    body.sidebar-toggled .sidebar .sidebar-brand-text,
    body.sidebar-toggled .sidebar .sidebar-heading,
    body.sidebar-toggled .sidebar .nav-link span {
        display: none !important;
    }
    body.sidebar-toggled .sidebar .sidebar-brand-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin: 0 auto;
    }
    body.sidebar-toggled .sidebar .nav-link {
        justify-content: center;
        padding: 12px 8px;
        margin: 2px 8px;
    }
    body.sidebar-toggled .sidebar .nav-link i {
        margin-right: 0;
    }
    body.sidebar-toggled .sidebar .collapse-item {
        text-align: center;
    }
}

/* ============================================
   Mobile - Hamburger drawer sidebar
   ============================================ */
.sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(17, 24, 39, 0.5);
    z-index: 1040;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sidebar-overlay.show {
    display: block;
    opacity: 1;
}

body.sidebar-mobile-open {
    overflow: hidden;
}

@media (max-width: 767.98px) {
    .sidebar {
        position: fixed !important;
        top: 0;
        left: 0;
        height: 100vh !important;
        min-height: 100vh !important;
        width: var(--sidebar-width) !important;
        max-width: 85vw;
        transform: translateX(0);
        transition: transform 0.3s ease;
        z-index: 1050;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .sidebar.toggled {
        width: var(--sidebar-width) !important;
        transform: translateX(-100%);
        overflow: hidden;
        pointer-events: none;
    }

    .sidebar .nav-item .nav-link {
        justify-content: flex-start;
        padding: 11px 16px;
        text-align: left;
    }

    .sidebar .nav-item .nav-link i {
        margin-right: 8px;
        font-size: 16px;
    }

    .sidebar .nav-item .nav-link span,
    .sidebar-brand-text,
    .sidebar-heading {
        display: inline !important;
    }

    .sidebar .collapse-inner {
        display: block !important;
    }

    #content-wrapper {
        width: 100% !important;
        margin-left: 0 !important;
    }

    #sidebarToggleTop {
        background: var(--primary);
        color: #fff !important;
        width: 42px;
        height: 42px;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 10px rgba(37, 99, 235, 0.35);
        border: none;
        flex-shrink: 0;
    }

    #sidebarToggleTop:hover,
    #sidebarToggleTop:focus {
        background: var(--primary-dark);
        color: #fff !important;
        text-decoration: none;
    }

    #sidebarToggleTop i {
        font-size: 18px;
    }

    .topbar {
        padding: 0 16px;
    }

    .card-body {
        padding: 16px !important;
    }

    .btn {
        padding: 8px 16px;
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .stat-card {
        margin-bottom: 16px;
    }

    .stat-card .stat-value {
        font-size: 20px;
    }

    .page-header h1 {
        font-size: 20px;
    }
}

/* Override sb-admin defaults */
.bg-gradient-primary,
.sidebar-dark {
    background: var(--sidebar-bg) !important;
    background-image: none !important;
}

#content-wrapper {
    background: var(--cream) !important;
}

.sidebar .nav-item .nav-link[data-toggle="collapse"]::after {
    color: rgba(255,255,255,0.5);
}

/* ============================================
   Utility Classes (theme-consistent)
   ============================================ */
.text-theme { color: var(--primary) !important; }
.text-theme-muted { color: var(--gray) !important; }
.link-theme { color: var(--primary); font-weight: 600; text-decoration: none; }
.link-theme:hover { color: var(--primary-dark); text-decoration: none; }
.text-amount-lg { font-size: 18px; font-weight: 700; color: var(--primary); }
.text-discount { color: var(--danger); }
.spinner-theme { color: var(--primary); }
.card-accent { border-left: 4px solid var(--primary) !important; }
.card-accent-danger { border-left: 4px solid var(--danger) !important; }
.card-header-theme,
.modal-header-theme {
    background: var(--primary) !important;
    color: white !important;
    border: 0 !important;
}
.modal-header-danger {
    background: var(--danger) !important;
    color: white !important;
    border: 0 !important;
}
.modal-content-clean { border: 0; border-radius: 12px; overflow: hidden; }
.modal-footer-clean { border: 0; background: var(--cream); }
.nav-tabs-theme { border-bottom: 2px solid var(--primary) !important; }
.nav-tabs-theme .nav-link { font-weight: 600; color: var(--gray); }
.nav-tabs-theme .nav-link.active { color: var(--primary); border-color: var(--border) var(--border) white; }
.bg-row-subtle { background: var(--cream-dark) !important; }
.bg-row-success { background: #F0FDF4 !important; }
.bg-row-danger { background: #FEF2F2 !important; }
.bg-row-warning { background: #FFF7ED !important; }
.bg-row-muted { background: var(--cream) !important; }
.text-pay-cash { color: var(--success) !important; }
.text-pay-transfer { color: var(--primary) !important; }
.text-pay-hutang { color: var(--warning) !important; }
.btn-print-theme { background: var(--primary); color: white; }
.btn-print-theme:hover { background: var(--primary-dark); color: white; }
.loading-box { text-align: center; padding: 1.5rem; }
.ui-autocomplete {
    border-radius: 8px !important;
    box-shadow: var(--shadow-lg) !important;
    border: 1px solid var(--border) !important;
}
.btn-outline-secondary {
    border: 2px solid var(--primary) !important;
    color: var(--primary) !important;
    background: transparent !important;
}

.btn-outline-secondary:hover {
    background: var(--primary) !important;
    color: white !important;
}

@media print {
    .sidebar,
    .topbar,
    .btn,
    .no-print {
        display: none !important;
    }

    #content-wrapper {
        margin-left: 0 !important;
    }

    .card {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }
}
