/* --- Global Styles & Variables --- */
:root {
    --base-font-size: 13px;
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --sidebar-bg: #343a40;
    --sidebar-text: #c2c7d0;
    --sidebar-active-bg: #494e53;
    --body-bg: #f4f6f9;
    --card-border-color: #dee2e6;
    --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    font-size: var(--base-font-size);
}

body {
    margin: 0;
    font-family: var(--font-family);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--dark-color);
    background-color: var(--body-bg);
}

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

.header-left {
    display: none;
}
.sidebar-toggle {
    display: none;
}

.sidebar {
    width: 250px;
    background-color: var(--sidebar-bg);
    color: var(--sidebar-text);
    flex-shrink: 0;
    transition: margin-left 0.3s ease;
}

.sidebar-header {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #4f5962;
}
.sidebar-brand {
    color: #fff;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 700;
}

.sidebar-nav ul {
    list-style: none;
    margin: 0;
    padding: 1rem 0;
}
.sidebar-nav a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--sidebar-text);
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s;
}
.sidebar-nav a:hover {
    background-color: var(--sidebar-active-bg);
    color: #fff;
}

.main-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.header {
    background-color: #fff;
    padding: 0.5rem 1rem;
    border-bottom: 1px solid var(--card-border-color);
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.user-menu a {
    margin-left: 1rem;
    text-decoration: none;
    color: var(--secondary-color);
}

.content-wrapper {
    padding: 1.5rem;
    flex-grow: 1;
}

/* --- NEW: Grid System --- */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-lg-8, .col-lg-4, .col-md-6, .col-md-4, .col-md-8, .col-md-12 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

/* --- Components --- */
.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}
.page-header h1 {
    margin: 0;
    font-size: 1.8rem;
}

.card {
    background-color: #fff;
    border: 1px solid var(--card-border-color);
    border-radius: 0.25rem;
    margin-bottom: 1rem;
}
.card-header {
    padding: 0.75rem 1.25rem;
    background-color: var(--light-color);
    border-bottom: 1px solid var(--card-border-color);
}
.card-body {
    padding: 1.25rem;
}

.btn {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    text-decoration: none;
}
.btn-primary { color: #fff; background-color: var(--primary-color); border-color: var(--primary-color); }
.btn-secondary { color: #fff; background-color: var(--secondary-color); border-color: var(--secondary-color); }
.btn-info { color: #fff; background-color: var(--info-color); border-color: var(--info-color); }
.btn-warning { color: #212529; background-color: var(--warning-color); border-color: var(--warning-color); }
.btn-danger { color: #fff; background-color: var(--danger-color); border-color: var(--danger-color); }
.btn-success { color: #fff; background-color: var(--success-color); border-color: var(--success-color); }
.btn-sm { padding: 0.25rem 0.5rem; font-size: 0.875rem; }

.form-group { margin-bottom: 1rem; }
.form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
}
.form-check { display: flex; align-items: center; }
.form-check-input { margin-right: 0.5rem; }

.alert { padding: 0.75rem 1.25rem; margin-bottom: 1rem; border: 1px solid transparent; border-radius: 0.25rem; }
.alert-success { color: #155724; background-color: #d4edda; border-color: #c3e6cb; }
.alert-danger { color: #721c24; background-color: #f8d7da; border-color: #f5c6cb; }
.alert-info { color: #0c5460; background-color: #d1ecf1; border-color: #bee5eb; }

.status-badge { padding: 0.25em 0.6em; font-size: 75%; font-weight: 700; line-height: 1; text-align: center; white-space: nowrap; vertical-align: baseline; border-radius: 0.25rem; }
.status-active, .status-open, .status-approved { color: #fff; background-color: var(--success-color); }
.status-inactive, .status-closed, .status-rejected { color: #fff; background-color: var(--secondary-color); }
.status-pending, .status-in_progress { color: #212529; background-color: var(--warning-color); }
.status-processed { color: #fff; background-color: var(--info-color); }

.data-table { width: 100%; border-collapse: collapse; }
.data-table th, .data-table td { padding: 0.75rem; text-align: left; border-bottom: 1px solid var(--card-border-color); }
.data-table thead th { vertical-align: bottom; border-bottom-width: 2px; }
.actions-cell { white-space: nowrap; }

/* --- Specific Module Styles --- */
/* Login Page */
.login-container { display: flex; justify-content: center; align-items: center; width: 100%; min-height: 100vh; background-color: #f4f7f6; }
.login-box { width: 100%; max-width: 400px; padding: 40px; background-color: #fff; border-radius: 8px; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.login-box h1 { text-align: center; margin-bottom: 25px; color: #333; }

/* Dashboard */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; margin-top: 20px; }
.stat-card { background-color: #fff; padding: 20px; border-radius: 8px; box-shadow: 0 2px 4px rgba(0,0,0,0.05); }
.stat-card-label { font-size: 14px; color: #6c757d; margin-bottom: 8px; }
.stat-card-value { font-size: 28px; font-weight: 700; color: #343a40; }
.stat-card-change { font-size: 12px; color: var(--success-color); margin-top: 8px; }

/* Tickets */
.reply-card { border: 1px solid #ddd; border-radius: 8px; margin-bottom: 1rem; }
.reply-header { background-color: #f7f7f7; padding: 0.75rem 1.25rem; border-bottom: 1px solid #ddd; display: flex; justify-content: space-between; }
.reply-body { padding: 1.25rem; white-space: pre-wrap; }
.reply-admin .reply-header { background-color: #e2e3e5; }

/* Reports */
.summary-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.5rem; }
.summary-card { background-color: var(--light-color); padding: 1.25rem; border-radius: 8px; border: 1px solid var(--card-border-color); text-align: center; }
.summary-label { font-size: 0.9rem; color: var(--secondary-color); margin-bottom: 0.5rem; }
.summary-value { font-size: 2rem; font-weight: 700; }
.text-success { color: var(--success-color) !important; }
.text-warning { color: var(--warning-color) !important; }
.text-danger { color: var(--danger-color) !important; }

/* --- Pagination Styles --- */
.pagination-nav {
    margin-top: 1.5rem;
    display: flex;
    justify-content: flex-end; /* Aligns the links to the right */
}
.pagination {
    list-style: none;
    display: flex; /* Makes the list horizontal */
    padding: 0;
    margin: 0;
    border-radius: 0.25rem;
    overflow: hidden;
}
.page-item .page-link {
    display: block;
    padding: 0.5rem 0.75rem;
    color: var(--primary-color);
    background-color: #fff;
    border: 1px solid #dee2e6;
    text-decoration: none;
    transition: background-color 0.2s;
}
.page-item .page-link:hover {
    background-color: #e9ecef;
}
.page-item.active .page-link {
    z-index: 1;
    color: #fff;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
.page-item:not(:first-child) .page-link {
    margin-left: -1px;
}

/* --- Filter Form Styles --- */
.filter-form .filter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    align-items: flex-end;
}
.filter-form .form-actions {
    display: flex;
    gap: 0.5rem;
}

/* --- Sortable Table Header Styles --- */
.data-table th a {
    text-decoration: none;
    color: inherit;
    display: block;
}
.data-table th a:hover {
    color: var(--primary-color);
}

/* --- Inline Filter Row Styles --- */
.data-table .filter-row th {
    padding: 0.5rem;
    vertical-align: top;
}
.data-table .filter-row .form-control {
    font-size: 0.9rem;
    padding: 0.25rem 0.5rem;
    height: auto;
}
.data-table .filter-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    padding-top: 0.5rem; /* Aligns the action buttons vertically */
    height: 100%;       /* Ensures the container fills the cell height */
}

/* --- New Header Styles --- */
.header-logo {
    max-height: 30px;
    margin-left: 1rem;
}

.user-menu {
    position: relative;
}

.user-menu-toggle {
    cursor: pointer;
    padding: 0.5rem;
}
.user-menu-toggle span {
    margin-right: 0.5rem;
}

.user-menu-dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background-color: #fff;
    border: 1px solid var(--card-border-color);
    border-radius: 0.25rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    min-width: 160px;
    z-index: 1001;
}
.user-menu-dropdown a {
    display: block;
    padding: 0.75rem 1rem;
    margin: 0;
    white-space: nowrap;
}
.user-menu-dropdown a:hover {
    background-color: var(--body-bg);
}

/* Show dropdown on hover */
.user-menu:hover .user-menu-dropdown {
    display: block;
}

.sidebar-brand-container {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.sidebar-logo {
    max-height: 30px;
    margin-right: 10px;
}

.sidebar-brand {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
}

/* --- NEW STYLE FOR DEALER COMPANY NAME --- */
.sidebar-company-name {
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid #4f5962;
    word-wrap: break-word;
}

/* Hide the mobile logo by default on desktop */
.header-logo-mobile {
    display: none;
}

.nav-tabs {
    border-bottom: 1px solid var(--card-border-color);
    margin-bottom: -1px; /* Aligns with card-body */
    display: flex;
    list-style: none;
    padding: 0;
}
.nav-tabs .nav-item {
    margin-bottom: -1px;
}
.nav-tabs .nav-link {
    border: 1px solid transparent;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: var(--primary-color);
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
    color: var(--dark-color);
    background-color: #fff;
    border-color: var(--card-border-color) var(--card-border-color) #fff;
}

.tab-content > .tab-pane {
    display: none;
}
.tab-content > .active {
    display: block;
}

/* --- Payment Method Card Styles --- */
.payment-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.payment-card {
    border: 1px solid var(--card-border-color);
    border-radius: 0.25rem;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    position: relative;
}
.payment-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.payment-card.active {
    border-width: 2px;
    border-color: var(--primary-color);
    background-color: #f0f8ff;
}
.payment-card.preferred {
    border-left: 4px solid var(--success-color);
}
.card-bank-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}
.card-account-no {
    font-size: 0.9rem;
    color: var(--secondary-color);
}
.card-preferred-badge {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background-color: var(--success-color);
    color: #fff;
    font-size: 0.7rem;
    padding: 2px 5px;
    border-radius: 3px;
}
.payment-card.add-new {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-style: dashed;
}
.card-add-icon {
    font-size: 2rem;
    line-height: 1;
    color: var(--secondary-color);
}
.card-add-text {
    margin-top: 0.5rem;
    color: var(--secondary-color);
}
.payment-form-actions {
    display: flex;
    gap: 1rem;
}

/* --- Modal Styles --- */
.modal {
    display: none; 
    position: fixed; 
    z-index: 1001; 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; 
    background-color: rgba(0,0,0,0.4); 
}

.modal-content {
    background-color: #fefefe;
    margin: 10% auto; /* Adjusted margin for better centering */
    padding: 20px;
    border: 1px solid #888;
    width: 90%; /* Increased width for more content */
    max-width: 800px; /* Max width for larger screens */
    border-radius: 5px;
    position: relative;
}

/* --- NEW: Responsive table for modal --- */
.table-responsive {
    overflow-x: auto;
}

.modal .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 5px;
    right: 15px;
}

.modal .close:hover,
.modal .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

#sku-version-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 200px;
    overflow-y: auto;
}

#sku-version-list li {
    padding: 10px;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
}

#sku-version-list li:hover {
    background-color: #f1f1f1;
}

.btn.disabled, .btn:disabled {
    pointer-events: none; /* Prevents click events */
    opacity: 0.65;
}

/* --- Order View Page Improvements --- */
.detail-table th {
    width: 30%;
    background-color: #f8f9fa;
    font-weight: 600;
}

.serial-action-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    border: 1px solid var(--card-border-color);
    border-radius: 0.25rem;
    margin-bottom: 0.5rem;
    transition: background-color 0.2s;
}
.serial-action-card:hover {
    background-color: #f8f9fa;
}

.serial-action-card .btn-group {
    flex-shrink: 0; /* Prevents buttons from wrapping */
}

/* Enhanced Timeline Style */
.timeline {
    list-style: none;
    padding: 0;
    position: relative;
}
.timeline:before {
    content: '';
    position: absolute;
    top: 5px;
    bottom: 5px;
    left: 15px;
    width: 2px;
    background: #e9ecef;
}
.timeline > li {
    margin-bottom: 20px;
    position: relative;
    padding-left: 40px;
}
.timeline .timeline-badge {
    content: '';
    position: absolute;
    top: 5px;
    left: 8px; /* Center on the line */
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary-color);
    border: 2px solid #fff;
}
.timeline .timeline-panel {
    position: relative;
}
.timeline .timeline-heading h5 {
    margin-top: 0;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}
.timeline .timeline-body p {
    margin-bottom: 0;
}
.badge.ml-2 {
    margin-left: 0.5rem;
}

/* --- Hover Effect Logic --- */
.timeline-body-hover {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, margin-top 0.3s ease-out;
    margin-top: 0;
}
.timeline-panel:hover {
    border-color: var(--primary-color);
    background-color: #f8f9fa;
}
.timeline-panel:hover .timeline-body-hover {
    max-height: 200px; /* Adjust as needed */
    margin-top: 15px; /* Creates space when it appears */
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background-color: #fff;
    border: 1px solid var(--card-border-color);
    border-radius: 0.25rem;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s ease-in-out;
}
.product-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.product-image-container {
    padding: 1rem;
    background-color: #f8f9fa;
    text-align: center;
}

.product-image {
    max-height: 150px;
    width: auto;
    max-width: 100%;
}

.product-card-body {
    padding: 1rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.product-tagline {
    font-size: 0.9rem;
    color: var(--secondary-color);
    flex-grow: 1;
    margin-bottom: 1rem;
}

.product-pricing {
    margin-bottom: 1rem;
}

.price-tag {
    display: inline-block;
    background-color: #e9ecef;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.8rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

/* --- NEW: Product Detail Page Styles --- */
.product-detail-image-wrapper {
    padding: 2rem;
    text-align: center;
    background-color: #f8f9fa;
}
.product-detail-image-wrapper img {
    max-width: 100%;
    max-height: 250px;
}
.product-pricing-detail {
    margin-top: 1rem;
    border-top: 1px solid var(--card-border-color);
    padding-top: 1rem;
}
.price-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}
.price-label {
    font-weight: 600;
}
.price-value {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
}
.tab-content ul {
    padding-left: 20px;
}
.tab-content ul li {
    margin-bottom: 0.5rem;
}

.view-toggle {
    display: flex;
    gap: 0.5rem;
}

.product-page-layout {
    display: flex;
    gap: 1.5rem;
}

.product-sidebar-left {
    width: 250px;
    flex-shrink: 0;
}

.product-sidebar-right {
    width: 250px;
    flex-shrink: 0;
}

.product-main-content {
    flex-grow: 1;
}

.sticky-sidebar {
    position: -webkit-sticky; /* Safari */
    position: sticky;
    top: 1.5rem; /* Adjust this value based on your header's height or desired spacing */
}

/* --- Dashboard Styles --- */
.summary-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}
.summary-cards .card {
    margin-bottom: 0;
}
.summary-cards .card-body {
    display: flex;
    align-items: center;
    padding: 1rem;
}
.card-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 1rem;
    flex-shrink: 0;
}
.card-content h4 {
    margin: 0 0 0.25rem 0;
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: normal;
}
.card-content p {
    margin: 0;
    font-size: 1.5rem;
    font-weight: bold;
}
.charts-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}
.recent-activity .card-body {
    padding: 0;
}
.recent-activity .data-table tr:last-child td {
    border-bottom: none;
}

.d-lg-none {
    display: flex !important; /* Ensures tabs are flex items on mobile */
}

@media (max-width: 991.98px) {
    .nav-tabs .nav-item {
        flex-grow: 1; /* Makes tabs fill the width */
        text-align: center;
    }
}

@media (max-width: 992px) {
    .product-page-layout {
        flex-direction: column;
    }
    .product-sidebar-left, .product-sidebar-right {
        width: 100%;
    }
}

@media (min-width: 992px) { /* Large devices (desktops, 992px and up) */
    .d-lg-none {
        display: none !important; /* Hides tabs on desktop */
    }
    .d-none.d-lg-block {
        display: block !important; /* Shows desktop-only elements */
    }
    /* On desktop, make all panes visible as columns */
    #order-view-content .tab-pane {
        display: block;
        opacity: 1;
        visibility: visible;
    }
    .card.h-100 {
        height: 100% !important;
    }
    .col-lg-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    .col-lg-8 {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }
}

@media (min-width: 768px) { /* Medium devices (tablets, 768px and up) */
    .col-md-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-md-8 {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }
    .col-md-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* --- Responsive Design --- */
@media (max-width: 768px) {

    /* --- ADD THIS NEW BLOCK --- */
    .header {
        justify-content: space-between;
    }
    /* --- END OF NEW BLOCK --- */

    .header-left {
        display: block; /* Show the container for the hamburger icon */
    }

    .sidebar-toggle {
        display: block; /* Show the hamburger button */
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--secondary-color);
    }

    .app-container {
        flex-direction: row; 
    }

    .sidebar {
        position: fixed; 
        left: -260px; /* Start off-screen */
        top: 0;
        height: 100vh;
        z-index: 1000;
        transition: left 0.3s ease-in-out;
        box-shadow: 0 0 15px rgba(0,0,0,0.2);
    }
    
    .sidebar.sidebar-show {
        left: 0; /* Slide it into view */
    }
    
    .main-content {
        width: 100%;
        /* Add transition for the push effect */
        transition: margin-left 0.3s ease-in-out;
    }

    /* FIX 1: Pushes content when sidebar is open */
    .sidebar.sidebar-show + .main-content {
        margin-left: 250px;
    }

    .page-header { 
        flex-direction: column; 
        align-items: flex-start; 
    }
    .page-header h1 { 
        margin-bottom: 1rem; 
    }

    /* FIX 2: Corrected Responsive Table Styles */
    .data-table thead { 
        display: none; 
    }
    .data-table, .data-table tbody, .data-table tr, .data-table td { 
        display: block; 
        width: 100%; 
    }
    .data-table tr { 
        margin-bottom: 1rem; 
        border: 1px solid var(--card-border-color); 
        border-radius: 0.25rem;
        overflow: hidden;
    }
    .data-table td { 
        text-align: right; 
        padding-left: 50%; 
        position: relative;
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }
    .data-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 0;
        width: 50%;
        padding-left: 1rem;
        font-weight: 600;
        text-align: left;
        white-space: nowrap;
    }
        /* Hide the sidebar logo on mobile */
    .sidebar-logo {
        display: none;
    }

    /* Show the mobile logo in the header and align it */
    .header-logo-mobile {
        display: block;
        max-height: 30px;
        margin-left: 1rem;
    }
}