/* ===========================================
   CRM PT Sukses Makmur Intertama
   Theme: ONLY White - Gold - Navy Blue (60-20-20)
   Mobile-First Design (HP Priority)
   =========================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
    /* ONLY 3 Colors: White 60%, Gold 20%, Navy 20% */
    --white: #ffffff;
    --off-white: #fafafa;
    --light-gray: #f5f5f5;

    --gold: #d4a847;
    --gold-light: #e6c060;
    --gold-dark: #b8922f;

    --navy: #1a365d;
    --navy-light: #2c5282;
    --navy-dark: #0f2442;

    --text-dark: #1a365d;
    --text-muted: #5a6b7d;

    --sidebar-width: 260px;
    --shadow: 0 2px 12px rgba(26, 54, 93, 0.08);
    --gold-shadow: 0 4px 15px rgba(212, 168, 71, 0.25);
    --transition: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

/* Mobile-First: Base font for small screens */
html {
    font-size: 14px;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background-color: var(--light-gray);
    color: var(--text-dark);
    min-height: 100vh;
    line-height: 1.6;
}

/* ===========================================
   Mobile-First Layout
   =========================================== */
.wrapper {
    display: flex;
    min-height: 100vh;
}

/* ===========================================
   Sidebar - Navy Blue
   =========================================== */
.sidebar {
    width: var(--sidebar-width);
    height: 100vh;
    max-height: 100vh;
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: var(--white);
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    box-shadow: 4px 0 20px rgba(26, 54, 93, 0.3);
    overflow: hidden;

    /* Mobile: Hidden by default */
    transform: translateX(-100%);
    transition: transform var(--transition);
}

.sidebar.active {
    transform: translateX(0);
}

/* Desktop: Show sidebar */
@media (min-width: 993px) {
    .sidebar {
        transform: translateX(0);
    }
}

.sidebar-header {
    padding: 18px 15px;
    text-align: center;
    border-bottom: 1px solid rgba(212, 168, 71, 0.3);
    background: rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    /* Prevent header from shrinking */
}

.sidebar-header h4 {
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 4px;
    font-size: 1.15rem;
}

.sidebar-header h4 i {
    margin-right: 8px;
}

.sidebar-header small {
    font-size: 0.65rem;
    color: var(--gold-light);
    opacity: 0.9;
}

.sidebar-nav {
    list-style: none;
    padding: 12px 0;
    flex: 1;
    overflow-y: auto;
    min-height: 0;
    /* Important for flex child scrolling */
}

.sidebar-nav::-webkit-scrollbar {
    width: 4px;
}

.sidebar-nav::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 10px;
}

.sidebar-nav .nav-item {
    margin: 4px 10px;
}

.sidebar-nav .nav-link {
    display: flex;
    align-items: center;
    padding: 14px 16px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    border-radius: 10px;
    transition: all var(--transition);
    font-size: 0.9rem;
    font-weight: 500;
    min-height: 50px;
    /* Touch-friendly */
}

.sidebar-nav .nav-link i {
    font-size: 1.2rem;
    margin-right: 12px;
    width: 24px;
    text-align: center;
    color: var(--gold-light);
}

.sidebar-nav .nav-link:hover {
    background: rgba(212, 168, 71, 0.15);
    color: var(--white);
}

.sidebar-nav .nav-link.active {
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    color: var(--navy-dark);
    font-weight: 600;
    box-shadow: var(--gold-shadow);
}

.sidebar-nav .nav-link.active i {
    color: var(--navy-dark);
}

.sidebar-footer {
    padding: 15px;
    border-top: 1px solid rgba(212, 168, 71, 0.3);
    background: rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
    /* Prevent footer from shrinking */
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(212, 168, 71, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(212, 168, 71, 0.2);
    margin-bottom: 12px;
}

.user-info i {
    font-size: 2rem;
    color: var(--gold);
}

.user-info strong {
    font-size: 0.85rem;
    display: block;
    color: var(--white);
}

.user-info small {
    font-size: 0.7rem;
    color: var(--gold-light);
}

/* ===========================================
   Sidebar Overlay for Mobile
   =========================================== */
.sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(26, 54, 93, 0.7);
    z-index: 1040;
    backdrop-filter: blur(4px);
}

.sidebar-overlay.show {
    display: block;
}

body.sidebar-open {
    overflow: hidden;
}

/* ===========================================
   Main Content - White Theme
   =========================================== */
.content {
    flex: 1;
    min-height: 100vh;
    background-color: var(--light-gray);
    width: 100%;
}

@media (min-width: 993px) {
    .content {
        margin-left: var(--sidebar-width);
    }
}

/* Top Navbar */
.content .navbar {
    background: var(--white) !important;
    border-bottom: 3px solid var(--gold);
    position: sticky;
    top: 0;
    z-index: 1020;
    padding: 10px 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar h5 {
    color: var(--navy);
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0;
}

#sidebarToggle {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    background: var(--light-gray);
    border: none;
    padding: 0;
}

#sidebarToggle:hover,
#sidebarToggle:active {
    background: var(--gold);
    color: var(--white);
}

/* Hide date on mobile */
.navbar .text-muted {
    display: none;
}

@media (min-width: 768px) {
    .navbar .text-muted {
        display: block;
    }
}

/* ===========================================
   Container - Mobile Padding
   =========================================== */
.container-fluid {
    padding: 12px;
}

@media (min-width: 768px) {
    .container-fluid {
        padding: 20px;
    }
}

/* ===========================================
   Stat Cards - White with Gold accent
   =========================================== */
.stat-card {
    background: var(--white);
    border-radius: 12px;
    padding: 16px;
    box-shadow: var(--shadow);
    transition: all var(--transition);
    border-left: 4px solid var(--gold);
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 54, 93, 0.12);
}

.stat-card .icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--gold);
}

/* All icons use same color scheme */
.stat-card .icon.primary,
.stat-card .icon.success,
.stat-card .icon.warning,
.stat-card .icon.info,
.stat-card .icon.danger {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--gold);
}

.stat-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 2px;
    color: var(--navy);
}

.stat-card p {
    color: var(--text-muted);
    margin-bottom: 0;
    font-size: 0.75rem;
    font-weight: 500;
}

/* ===========================================
   Tables - Mobile Scroll
   =========================================== */
.table-container {
    background: var(--white);
    border-radius: 12px;
    padding: 14px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

@media (min-width: 768px) {
    .table-container {
        padding: 20px;
    }
}

.table-container h5 {
    color: var(--navy);
    font-weight: 600;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gold);
    font-size: 0.95rem;
}

.table-responsive {
    margin: 0 -14px;
    padding: 0 14px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

@media (min-width: 768px) {
    .table-responsive {
        margin: 0 -20px;
        padding: 0 20px;
    }
}

.table {
    min-width: 600px;
    margin-bottom: 0;
}

.table thead th {
    background: var(--navy);
    color: var(--white);
    font-weight: 600;
    border: none;
    padding: 10px 12px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.table thead th:first-child {
    border-radius: 8px 0 0 8px;
}

.table thead th:last-child {
    border-radius: 0 8px 8px 0;
}

.table tbody td {
    padding: 10px 12px;
    vertical-align: middle;
    font-size: 0.8rem;
    border-bottom: 1px solid #f0f0f0;
}

.table tbody tr:hover {
    background-color: rgba(212, 168, 71, 0.05);
}

.table-warning {
    background-color: rgba(212, 168, 71, 0.1) !important;
}

.table-dark {
    background: var(--navy) !important;
}

.table-dark th {
    color: var(--gold) !important;
}

/* ===========================================
   Badges - ONLY Navy & Gold
   =========================================== */
.badge {
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
}

/* All badges use Navy or Gold only */
.bg-primary,
.bg-info,
.bg-secondary {
    background: var(--navy) !important;
    color: var(--white) !important;
}

.bg-success,
.bg-warning {
    background: var(--gold) !important;
    color: var(--navy-dark) !important;
}

.bg-danger {
    background: var(--navy-dark) !important;
    color: var(--gold) !important;
}

.bg-light {
    background: var(--off-white) !important;
    color: var(--navy) !important;
}

/* Status badges */
.badge-status {
    padding: 6px 12px;
}

.badge-open,
.badge-followup {
    background: rgba(26, 54, 93, 0.1);
    color: var(--navy);
}

.badge-assigned {
    background: rgba(212, 168, 71, 0.2);
    color: var(--gold-dark);
}

.badge-close {
    background: var(--gold);
    color: var(--navy-dark);
}

.badge-drop {
    background: var(--navy-dark);
    color: var(--gold-light);
}

/* ===========================================
   Forms - Large Touch Targets
   =========================================== */
.form-container {
    background: var(--white);
    border-radius: 12px;
    padding: 18px;
    box-shadow: var(--shadow);
}

@media (min-width: 768px) {
    .form-container {
        padding: 24px;
    }
}

.form-label {
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
    font-size: 0.85rem;
}

.form-control,
.form-select {
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 16px;
    /* Prevents zoom on iOS */
    min-height: 52px;
    transition: all var(--transition);
    background-color: var(--off-white);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(212, 168, 71, 0.15);
    background-color: var(--white);
}

.form-control::placeholder {
    color: #9ca3af;
}

/* ===========================================
   Buttons - Large Touch Targets
   =========================================== */
.btn {
    border-radius: 10px;
    padding: 14px 20px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition);
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 52px;
    width: 100%;
}

@media (min-width: 576px) {
    .btn {
        width: auto;
    }
}

.btn i {
    font-size: 1rem;
}

/* Primary Button - Gold */
.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy-dark);
    box-shadow: var(--gold-shadow);
}

.btn-primary:hover,
.btn-primary:active {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--navy-dark);
    transform: translateY(-2px);
}

/* Success, Info - Navy */
.btn-success,
.btn-info {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--white);
}

/* Secondary */
.btn-secondary {
    background: var(--off-white);
    color: var(--navy);
    border: 2px solid var(--navy);
}

.btn-secondary:hover {
    background: var(--navy);
    color: var(--white);
}

/* Danger - Dark Navy */
.btn-danger {
    background: var(--navy-dark);
    color: var(--gold);
}

/* Warning - Gold */
.btn-warning {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy-dark);
}

/* Outline buttons */
.btn-outline-danger {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: rgba(255, 255, 255, 0.9);
}

.btn-outline-danger:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    color: var(--white);
}

.btn-outline-secondary {
    background: transparent;
    border: 2px solid var(--navy);
    color: var(--navy);
}

.btn-outline-secondary:hover {
    background: var(--navy);
    color: var(--white);
}

.btn-sm {
    padding: 10px 14px;
    font-size: 0.8rem;
    min-height: 44px;
}

.btn-action {
    padding: 8px 12px;
    font-size: 0.75rem;
    min-height: 40px;
    margin: 3px;
    width: auto;
}

/* ===========================================
   WhatsApp Button - Gold style
   =========================================== */
.btn-whatsapp {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy-dark);
    box-shadow: var(--gold-shadow);
}

.btn-whatsapp:hover {
    color: var(--navy-dark);
    transform: translateY(-2px);
}

/* WhatsApp Forward Button - Navy style */
.btn-wa-forward {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(26, 54, 93, 0.25);
}

.btn-wa-forward:hover {
    background: linear-gradient(135deg, var(--navy-light), var(--navy));
    color: var(--gold-light);
    transform: translateY(-2px);
}

/* ===========================================
   Info List - Responsive Partner Info
   =========================================== */
.info-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-item {
    display: flex;
    flex-direction: column;
    padding: 10px 12px;
    background: var(--off-white);
    border-radius: 8px;
    border-left: 3px solid var(--gold);
    gap: 4px;
}

.info-item .info-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-item .info-label i {
    margin-right: 6px;
    color: var(--gold);
}

.info-item .info-value {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
    word-break: break-word;
}

/* Desktop: Horizontal layout for info-item */
@media (min-width: 576px) {
    .info-item {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
    }

    .info-item .info-label {
        min-width: 120px;
        flex-shrink: 0;
    }

    .info-item .info-value {
        text-align: right;
        flex: 1;
    }
}

/* ===========================================
   Cards
   =========================================== */
.card {
    border: none;
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.card-header {
    background: var(--navy);
    color: var(--white);
    border-bottom: 3px solid var(--gold);
    padding: 14px 16px;
}

.card-header h6 {
    font-weight: 600;
    margin: 0;
    font-size: 0.9rem;
    color: var(--gold-light);
}

.card-body {
    padding: 16px;
    background: var(--white);
}

/* ===========================================
   Alerts - Navy & Gold only
   =========================================== */
.alert {
    border: none;
    border-radius: 10px;
    padding: 14px 16px;
    font-weight: 500;
    font-size: 0.85rem;
}

.alert-success {
    background: rgba(212, 168, 71, 0.15);
    color: var(--gold-dark);
    border-left: 4px solid var(--gold);
}

.alert-danger {
    background: rgba(26, 54, 93, 0.1);
    color: var(--navy-dark);
    border-left: 4px solid var(--navy);
}

.alert-info {
    background: rgba(26, 54, 93, 0.08);
    color: var(--navy);
    border-left: 4px solid var(--navy);
}

.alert-warning {
    background: rgba(212, 168, 71, 0.15);
    color: var(--gold-dark);
    border-left: 4px solid var(--gold);
}

.alert-secondary {
    background: var(--off-white);
    color: var(--text-dark);
    border-left: 4px solid var(--gold);
}

/* ===========================================
   Timeline
   =========================================== */
.timeline {
    position: relative;
    padding-left: 28px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--navy), var(--gold));
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    padding-bottom: 18px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -23px;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gold);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px var(--gold);
}

.timeline-date {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    font-weight: 600;
}

.timeline-content {
    background: var(--white);
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    box-shadow: var(--shadow);
}

/* ===========================================
   Login Page
   =========================================== */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    padding: 16px;
}

.login-card {
    background: var(--white);
    border-radius: 16px;
    padding: 28px 20px;
    width: 100%;
    max-width: 380px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border-top: 4px solid var(--gold);
}

.login-card .logo {
    text-align: center;
    margin-bottom: 24px;
}

.login-card .logo .logo-img {
    width: 120px;
    height: auto;
    margin-bottom: 10px;
}

.login-card .logo h4 {
    color: var(--navy);
    margin-top: 10px;
    font-weight: 700;
    font-size: 1.2rem;
}

.login-card .logo p {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Sidebar Logo */
.sidebar-logo {
    width: 80px;
    height: auto;
    margin-bottom: 8px;
}

/* ===========================================
   Nav Tabs
   =========================================== */
.nav-tabs {
    border-bottom: 2px solid #e5e7eb;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.nav-tabs .nav-link {
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--text-muted);
    font-weight: 600;
    padding: 12px 14px;
    white-space: nowrap;
    font-size: 0.8rem;
    min-height: 48px;
}

.nav-tabs .nav-link:hover {
    color: var(--navy);
}

.nav-tabs .nav-link.active {
    color: var(--gold-dark);
    border-bottom-color: var(--gold);
    background: transparent;
}

/* ===========================================
   DataTables
   =========================================== */
.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter,
.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_paginate {
    padding: 10px 0;
    font-size: 0.8rem;
}

.dataTables_wrapper .dataTables_filter input {
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 10px 14px;
    min-height: 48px;
    font-size: 16px;
}

.dataTables_wrapper .dataTables_length select {
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 8px 12px;
    min-height: 44px;
}

.page-item.active .page-link {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy-dark);
}

.page-link {
    color: var(--navy);
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===========================================
   Leaderboard
   =========================================== */
.leaderboard-item {
    display: flex;
    align-items: center;
    padding: 14px;
    border-radius: 10px;
    margin-bottom: 10px;
    background: var(--white);
    border: 1px solid #e5e7eb;
    transition: all var(--transition);
}

.leaderboard-item:hover {
    border-color: var(--gold);
    box-shadow: var(--gold-shadow);
}

.leaderboard-rank {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 14px;
    font-size: 0.9rem;
}

.leaderboard-rank.gold,
.leaderboard-rank.silver,
.leaderboard-rank.bronze {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy-dark);
}

.leaderboard-rank.default {
    background: var(--navy);
    color: var(--gold);
}

.leaderboard-info h6 {
    margin-bottom: 2px;
    font-weight: 600;
    font-size: 0.85rem;
}

.leaderboard-value {
    font-weight: 700;
    color: var(--gold-dark);
    font-size: 0.95rem;
}

/* ===========================================
   Modal - Mobile Friendly
   =========================================== */
.modal-dialog {
    margin: 8px;
    max-width: calc(100% - 16px);
}

@media (min-width: 576px) {
    .modal-dialog {
        margin: 1.75rem auto;
        max-width: 500px;
    }
}

.modal-content {
    border: none;
    border-radius: 14px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.modal-header {
    background: var(--navy);
    color: var(--white);
    border-bottom: 3px solid var(--gold);
    border-radius: 14px 14px 0 0;
    padding: 16px;
}

.modal-body {
    padding: 18px;
}

.modal-footer {
    padding: 14px 18px;
    border-top: 1px solid #e5e7eb;
}

/* ===========================================
   Scrollbar - Gold
   =========================================== */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 10px;
}

/* ===========================================
   Utility Classes
   =========================================== */
.text-gold {
    color: var(--gold) !important;
}

.text-navy {
    color: var(--navy) !important;
}

.text-success {
    color: var(--gold-dark) !important;
}

.text-danger {
    color: var(--navy-dark) !important;
}

.text-muted {
    color: var(--text-muted) !important;
}

.bg-gold {
    background-color: var(--gold) !important;
}

.bg-navy {
    background-color: var(--navy) !important;
}

.fw-bold {
    font-weight: 700 !important;
}

/* ===========================================
   Mobile Grid Adjustments
   =========================================== */
.row.g-3 {
    --bs-gutter-x: 0.75rem;
    --bs-gutter-y: 0.75rem;
}

.d-flex.gap-2 {
    gap: 10px !important;
    flex-wrap: wrap;
}

.d-flex.gap-2 .btn {
    flex: 1;
    min-width: calc(50% - 10px);
}

@media (min-width: 576px) {
    .d-flex.gap-2 .btn {
        flex: 0 0 auto;
        min-width: auto;
    }
}

/* Reduce spacing on mobile */
.mb-4 {
    margin-bottom: 1rem !important;
}

.mb-3 {
    margin-bottom: 0.75rem !important;
}

@media (min-width: 768px) {
    .mb-4 {
        margin-bottom: 1.5rem !important;
    }

    .mb-3 {
        margin-bottom: 1rem !important;
    }
}

/* ===========================================
   Print Styles
   =========================================== */
@media print {

    .sidebar,
    .navbar,
    .btn,
    .no-print {
        display: none !important;
    }

    .content {
        margin-left: 0 !important;
    }
}