/*!
 * Mobile Responsive Styles - DarkFoodTheme
 * Purpose: Comprehensive mobile responsiveness for the entire application
 * Version: 1.0
 */

/* ===================================
   DARKFOODTHEME ENFORCEMENT
   =================================== */
/* CRITICAL: Prevent white flash on page load - EXCLUDE landing/login pages */
html:not(.landing-page):not(.login-page) {
    background: #0F1412 !important;
}

/* Force dark theme across app components - NO white flashes - EXCLUDE landing/login pages */
body:not(.landing-page):not(.login-page),
html:not(.landing-page):not(.login-page) {
    background: #0F1412 !important;
    color: #FFFFFF !important;
    transition: none !important;
}

/* Prevent white flash during component rendering - ONLY for app pages */
body:not(.landing-page):not(.login-page)::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0F1412;
    z-index: -1;
    pointer-events: none;
}

/* All major containers - prevent any white backgrounds - EXCLUDE landing/login */
.landing-page #app,
.login-page #app {
    background: transparent !important;
}

body:not(.landing-page):not(.login-page) #app,
body:not(.landing-page):not(.login-page) #sidebar,
body:not(.landing-page):not(.login-page) .app,
body:not(.landing-page):not(.login-page) .main,
body:not(.landing-page):not(.login-page) main:not(.login-container),
body:not(.landing-page):not(.login-page) section:not([class*="hero"]):not([class*="section"]),
body:not(.landing-page):not(.login-page) article {
    background: #0F1412 !important;
}

/* Main app containers - EXCLUDE landing/login */
body:not(.landing-page):not(.login-page) .app-section,
body:not(.landing-page):not(.login-page) .main-content,
body:not(.landing-page):not(.login-page) .app-container {
    background: #0F1412 !important;
}

/* Override any white backgrounds for cards - EXCLUDE landing/login cards */
body:not(.landing-page):not(.login-page) .dashboard-card,
body:not(.landing-page):not(.login-page) .glow-card,
body:not(.landing-page):not(.login-page) .feature-glow,
body:not(.landing-page):not(.login-page) .card:not(.login-card):not(.category-card):not(.step-card):not(.feature-card),
body:not(.landing-page):not(.login-page) [class*="card"]:not(.badge):not(.chip):not(.login-card):not(.category-card):not(.step-card):not(.feature-card) {
    background: #1A1D1C !important;
    border: 1px solid rgba(45, 212, 191, 0.2) !important;
    color: #FFFFFF !important;
}

/* Form inputs dark theme - SPECIFIC targeting - EXCLUDE landing/login forms */
body:not(.landing-page):not(.login-page) input[type="text"],
body:not(.landing-page):not(.login-page) input[type="email"],
body:not(.landing-page):not(.login-page) input[type="password"],
body:not(.landing-page):not(.login-page) input[type="number"],
body:not(.landing-page):not(.login-page) input[type="url"],
body:not(.landing-page):not(.login-page) input[type="search"],
body:not(.landing-page):not(.login-page) input[type="tel"],
body:not(.landing-page):not(.login-page) input[type="date"],
body:not(.landing-page):not(.login-page) input[type="time"],
body:not(.landing-page):not(.login-page) textarea,
body:not(.landing-page):not(.login-page) select,
body:not(.landing-page):not(.login-page) .form-input:not(.login-page .form-input) {
    background: #252927 !important;
    border: 1px solid rgba(45, 212, 191, 0.2) !important;
    color: #FFFFFF !important;
}

body:not(.landing-page):not(.login-page) input:focus,
body:not(.landing-page):not(.login-page) textarea:focus,
body:not(.landing-page):not(.login-page) select:focus,
body:not(.landing-page):not(.login-page) .form-input:not(.login-page .form-input):focus {
    background: #2A2F2D !important;
    border-color: #2DD4BF !important;
    outline: none !important;
}

body:not(.landing-page):not(.login-page) input::placeholder,
body:not(.landing-page):not(.login-page) textarea::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
}

/* Labels and text - EXCLUDE landing/login */
body:not(.landing-page):not(.login-page) label:not(.login-page label),
body:not(.landing-page):not(.login-page) .form-label:not(.login-page .form-label),
body:not(.landing-page):not(.login-page) .metric-label {
    color: #FFFFFF !important;
}

/* Tables dark theme - EXCLUDE landing/login */
body:not(.landing-page):not(.login-page) .table {
    color: #FFFFFF !important;
    background: transparent !important;
}

body:not(.landing-page):not(.login-page) .table th {
    background: #252927 !important;
    color: #FFFFFF !important;
    border-bottom: 1px solid rgba(45, 212, 191, 0.2) !important;
}

body:not(.landing-page):not(.login-page) .table td {
    border-bottom: 1px solid rgba(45, 212, 191, 0.1) !important;
    background: transparent !important;
}

body:not(.landing-page):not(.login-page) .table tr:hover td {
    background: rgba(45, 212, 191, 0.05) !important;
}

/* Sticky table column backgrounds */
body:not(.landing-page):not(.login-page) .table td:first-child,
body:not(.landing-page):not(.login-page) .table th:first-child {
    background: #1A1D1C !important;
}

body:not(.landing-page):not(.login-page) .table tr:hover td:first-child {
    background: rgba(45, 212, 191, 0.08) !important;
}

/* Override space theme light elements - for app nav only */
body:not(.landing-page):not(.login-page) .nav-glass {
    background: rgba(26, 29, 28, 0.95) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(45, 212, 191, 0.2) !important;
}

/* Progress bars */
body:not(.landing-page):not(.login-page) .progress-bar {
    background: #252927 !important;
}

/* Sidebar component backgrounds */
body:not(.landing-page):not(.login-page) .sidebar-section,
body:not(.landing-page):not(.login-page) .sidebar-container,
body:not(.landing-page):not(.login-page) side-bar {
    background: #1A1D1C !important;
}

/* Content areas - EXCLUDE landing/login content */
body:not(.landing-page):not(.login-page) .content-area,
body:not(.landing-page):not(.login-page) .page-content,
body:not(.landing-page):not(.login-page) [class*="content"]:not([class*="login"]):not([class*="landing"]) {
    background: transparent !important;
}

/* Ensure all text is readable */
p, span, div, a {
    color: inherit;
}

a {
    color: #2DD4BF;
    text-decoration: none;
}

a:hover {
    color: #22C55E;
}

/* Prevent modal backgrounds from being transparent */
.modal,
.custom-modal,
.modal-container {
    background: #1A1D1C !important;
}

.modal-overlay,
.custom-modal-container {
    background: rgba(0, 0, 0, 0.8) !important;
}

/* ===================================
   MOBILE BREAKPOINTS
   =================================== */
/* Mobile: 0-480px */
/* Tablet: 481-768px */
/* Desktop: 769px+ */

/* ===================================
   BASE MOBILE STYLES
   =================================== */
@media (max-width: 768px) {
    /* Typography */
    body {
        font-size: 14px;
    }
    
    h1 { font-size: 24px !important; }
    h2 { font-size: 20px !important; }
    h3 { font-size: 18px !important; }
    h4 { font-size: 16px !important; }
    h5 { font-size: 14px !important; }
    h6 { font-size: 13px !important; }
    
    /* Container Adjustments */
    .container, .container-fluid {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
    
    /* Remove excessive padding */
    .p-xl-4, .p-lg-4, .p-md-4 {
        padding: 16px !important;
    }
    
    .px-xl-4, .px-lg-4, .px-md-4 {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
    
    .py-xl-4, .py-lg-4, .py-md-4 {
        padding-top: 16px !important;
        padding-bottom: 16px !important;
    }
}

/* ===================================
   SIDEBAR MOBILE RESPONSIVENESS
   =================================== */
@media (max-width: 768px) {
    /* Hide sidebar by default on mobile */
    side-bar,
    .sidebar-section,
    .sidebar-container {
        transform: translateX(-100%);
        position: fixed !important;
        top: 0;
        left: 0;
        height: 100vh;
        width: 280px;
        z-index: 9999;
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.5);
        transition: transform 0.3s ease;
    }
    
    /* Show sidebar when open - support both component and container */
    side-bar.mobile-open,
    side-bar.mobile-open .sidebar-container,
    .sidebar-section.mobile-open,
    .sidebar-container.mobile-open {
        transform: translateX(0) !important;
    }
    
    /* Overlay for mobile sidebar */
    .sidebar-container::before {
        content: '';
        position: fixed;
        top: 0;
        left: 280px;
        width: calc(100vw - 280px);
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        pointer-events: none;
    }
    
    .sidebar-container.mobile-open::before {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }
    
    /* Adjust main content */
    .main-container {
        margin-left: 0 !important;
    }
    
    .app-section {
        margin-left: 0 !important;
        width: 100% !important;
    }
    
    /* Mobile sidebar toggle button */
    .mobile-side-bar-toggler {
        display: flex !important;
        position: fixed;
        top: 16px;
        left: 16px;
        z-index: 999;
        background: var(--food-card-bg);
        border: 1px solid rgba(45, 212, 191, 0.3);
        border-radius: 12px;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
        color: #2DD4BF;
        cursor: pointer;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        transition: all 0.3s ease;
    }
    
    .mobile-side-bar-toggler:hover {
        background: rgba(45, 212, 191, 0.1);
        box-shadow: 0 6px 16px rgba(45, 212, 191, 0.4);
    }
    
    .mobile-side-bar-toggler i {
        font-size: 20px;
    }
    
    /* Adjust user profile in sidebar */
    .sidebar-user-profile {
        padding: 12px !important;
        margin: 0 8px 16px 8px !important;
    }
    
    .sidebar-user-profile > div {
        gap: 10px !important;
    }
    
    .sidebar-user-profile img {
        width: 40px !important;
        height: 40px !important;
    }
    
    .sidebar-user-profile p {
        font-size: 13px !important;
    }
    
    .sidebar-user-profile p:last-child {
        font-size: 11px !important;
    }
    
    /* Sidebar menu items */
    .sidebar-menu-item,
    .sidebar-dropdown-menu-item {
        margin: 2px 8px !important;
    }
    
    .sidebar-menu-item-content {
        padding: 12px 14px !important;
        font-size: 13px !important;
    }
    
    .sidebar-menu-item-icon {
        font-size: 16px !important;
    }
}

/* ===================================
   TOP NAVIGATION MOBILE
   =================================== */
@media (max-width: 768px) {
    .top-nav-bar {
        left: 0 !important;
        height: 60px !important;
        padding: 0 16px !important;
    }
    
    .app-container {
        padding-top: 60px !important;
    }
    
    /* Hide user name on mobile */
    .user-name {
        display: none !important;
    }
    
    /* Adjust user avatar */
    .user-avatar {
        width: 32px !important;
        height: 32px !important;
    }
    
    /* Adjust notification icons */
    .nav-icon {
        width: 36px !important;
        height: 36px !important;
    }
    
    .nav-icon i {
        font-size: 16px !important;
    }
    
    .notification-badge {
        width: 16px !important;
        height: 16px !important;
        font-size: 9px !important;
        top: 6px !important;
        right: 6px !important;
    }
    
    /* Mobile dropdown positioning */
    .user-dropdown-menu {
        right: -10px !important;
        min-width: 200px !important;
    }
}

/* ===================================
   CARDS & CONTENT MOBILE
   =================================== */
@media (max-width: 768px) {
    /* Dashboard cards */
    .dashboard-card {
        padding: 16px !important;
        margin-bottom: 12px !important;
    }
    
    .metric-card {
        padding: 20px 16px !important;
    }
    
    .metric-number {
        font-size: 2rem !important;
    }
    
    .metric-label {
        font-size: 12px !important;
    }
    
    /* Content cards */
    .glow-card,
    .feature-glow {
        padding: 16px !important;
        margin-bottom: 12px !important;
    }
    
    /* List items */
    .settings-container {
        flex-direction: column !important;
        gap: 12px !important;
        padding: 12px !important;
    }
    
    .settings-details {
        width: 100% !important;
    }
    
    .settings-action {
        width: 100% !important;
        justify-content: flex-end !important;
    }
}

/* ===================================
   FORMS MOBILE
   =================================== */
@media (max-width: 768px) {
    .form-input,
    input[type="text"],
    input[type="email"],
    input[type="password"],
    input[type="number"],
    textarea,
    select {
        font-size: 16px !important; /* Prevents zoom on iOS */
        padding: 12px !important;
    }
    
    /* Form groups */
    .form-group {
        margin-bottom: 16px !important;
    }
    
    /* Buttons */
    button,
    .btn {
        min-height: 44px !important; /* Touch-friendly */
        padding: 12px 20px !important;
        font-size: 14px !important;
    }
    
    .btn-circle {
        min-width: 40px !important;
        min-height: 40px !important;
    }
    
    /* Button groups */
    .btn-group {
        flex-direction: column !important;
    }
    
    .btn-group > button,
    .btn-group > .btn {
        width: 100% !important;
        margin-bottom: 8px !important;
    }
}

/* ===================================
   MODALS MOBILE
   =================================== */
@media (max-width: 768px) {
    .modal-overlay,
    .custom-modal-container {
        padding: 12px !important;
        align-items: flex-end !important;
    }
    
    .modal,
    .custom-modal,
    .modal-container {
        max-width: 100% !important;
        width: 100% !important;
        max-height: 90vh !important;
        margin: 0 !important;
        border-radius: 20px 20px 0 0 !important;
    }
    
    .modal-header,
    .custom-modal-header {
        padding: 16px !important;
    }
    
    .modal-title,
    .custom-modal-header .h5 {
        font-size: 16px !important;
    }
    
    .modal-body,
    .custom-modal-body {
        padding: 16px !important;
        max-height: calc(90vh - 150px) !important;
    }
    
    .modal-footer,
    .custom-modal .row.no-gutters {
        padding: 16px !important;
        flex-direction: column-reverse !important;
        gap: 8px !important;
    }
    
    .modal-footer button,
    .custom-modal button {
        width: 100% !important;
        min-width: auto !important;
    }
    
    /* Modal close button */
    .modal-close,
    .custom-modal-close-button {
        top: 14px !important;
        right: 16px !important;
        width: 32px !important;
        height: 32px !important;
        font-size: 16px !important;
    }
}

/* ===================================
   TABLES MOBILE
   =================================== */
@media (max-width: 768px) {
    .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .table {
        min-width: 600px;
        font-size: 13px !important;
    }
    
    .table th,
    .table td {
        padding: 10px 12px !important;
        white-space: nowrap;
    }
    
    .table th {
        font-size: 12px !important;
    }
    
    /* Hide less important columns on mobile */
    .table .mobile-hide {
        display: none !important;
    }
    
    /* Sticky first column */
    .table td:first-child,
    .table th:first-child {
        position: sticky;
        left: 0;
        background: #fff;
        z-index: 1;
    }
}

/* ===================================
   SCROLLVIEWS & LISTS MOBILE
   =================================== */
@media (max-width: 768px) {
    .scroll-view,
    .vertical-scroll-view {
        padding: 8px !important;
    }
    
    .list-items-container {
        padding: 4px !important;
    }
    
    /* Grid adjustments */
    .col-xl-2,
    .col-xl-3,
    .col-xl-4,
    .col-lg-3,
    .col-lg-4,
    .col-md-4,
    .col-md-6 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    
    /* 2-column grid for certain items */
    .mobile-2-col {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
}

/* ===================================
   PAGE HEADERS MOBILE
   =================================== */
@media (max-width: 768px) {
    .main-content-header {
        height: auto !important;
        min-height: 60px !important;
        padding: 12px 16px !important;
    }
    
    .content-title {
        font-size: 16px !important;
        font-weight: 600 !important;
    }
    
    .tool-bar {
        gap: 8px !important;
    }
    
    /* Hide breadcrumbs on mobile */
    .bread-crumb-container {
        display: none !important;
    }
    
    /* Back button */
    .back-button {
        margin-right: 8px !important;
    }
}

/* ===================================
   CHIPS & BADGES MOBILE
   =================================== */
@media (max-width: 768px) {
    .chip,
    .custom-chip {
        font-size: 12px !important;
        padding: 6px 12px !important;
        margin: 4px !important;
    }
    
    .badge {
        font-size: 11px !important;
        padding: 3px 10px !important;
    }
    
    .chips-container {
        gap: 6px !important;
        padding: 8px !important;
    }
}

/* ===================================
   TOAST NOTIFICATIONS MOBILE
   =================================== */
@media (max-width: 768px) {
    .toast {
        padding: 12px 16px !important;
        font-size: 13px !important;
        max-width: calc(100vw - 32px) !important;
        margin: 16px !important;
    }
    
    .notification {
        top: auto !important;
        bottom: 20px !important;
        right: 16px !important;
        left: 16px !important;
        padding: 12px 16px !important;
        font-size: 13px !important;
    }
}

/* ===================================
   PAGINATION MOBILE
   =================================== */
@media (max-width: 768px) {
    .stepped-pagination {
        font-size: 12px !important;
    }
    
    .stepped-pagination .px-2 {
        padding-left: 8px !important;
        padding-right: 8px !important;
        font-size: 11px !important;
    }
    
    .stepped-pagination button {
        min-width: 32px !important;
        width: 32px !important;
        height: 32px !important;
        padding: 4px !important;
    }
}

/* ===================================
   IMAGES & MEDIA MOBILE
   =================================== */
/* Ensure bg-image component displays properly */
bg-image {
    display: block;
    width: 100%;
    height: 100%;
}

bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block !important;
}

/* Sidebar user image */
.sidebar-user-profile bg-image,
.sidebar-user-profile bg-image img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

@media (max-width: 768px) {
    .image,
    .bg-image,
    bg-image {
        border-radius: 8px !important;
        display: block !important;
    }
    
    .app-logo {
        width: 32px !important;
        height: 32px !important;
    }
    
    .app-logo bg-image,
    .app-logo bg-image img {
        display: block !important;
    }
    
    .app-name img {
        height: 24px !important;
        display: block !important;
    }
}

/* ===================================
   UTILITIES MOBILE
   =================================== */
@media (max-width: 768px) {
    /* Text alignment */
    .mobile-text-center {
        text-align: center !important;
    }
    
    .mobile-text-left {
        text-align: left !important;
    }
    
    .mobile-text-right {
        text-align: right !important;
    }
    
    /* Display utilities */
    .mobile-hide {
        display: none !important;
    }
    
    .mobile-show {
        display: block !important;
    }
    
    /* Flexbox utilities */
    .mobile-flex-column {
        flex-direction: column !important;
    }
    
    .mobile-flex-row {
        flex-direction: row !important;
    }
    
    /* Width utilities */
    .mobile-w-100 {
        width: 100% !important;
    }
    
    .mobile-w-auto {
        width: auto !important;
    }
    
    /* Spacing utilities */
    .mobile-p-0 { padding: 0 !important; }
    .mobile-p-1 { padding: 8px !important; }
    .mobile-p-2 { padding: 12px !important; }
    .mobile-p-3 { padding: 16px !important; }
    
    .mobile-m-0 { margin: 0 !important; }
    .mobile-m-1 { margin: 8px !important; }
    .mobile-m-2 { margin: 12px !important; }
    .mobile-m-3 { margin: 16px !important; }
}

/* ===================================
   TOUCH OPTIMIZATIONS
   =================================== */
@media (max-width: 768px) {
    /* Increase touch targets */
    a, button, input, select, textarea {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Remove hover effects on touch devices */
    @media (hover: none) {
        *:hover {
            background-color: inherit !important;
        }
        
        .sidebar-menu-item:hover,
        .sidebar-dropdown-menu-item:hover {
            transform: none !important;
        }
    }
    
    /* Smooth scrolling */
    * {
        -webkit-overflow-scrolling: touch;
    }
    
    /* Prevent text selection on buttons */
    button, .btn {
        -webkit-user-select: none;
        user-select: none;
        -webkit-tap-highlight-color: transparent;
    }
}

/* ===================================
   LANDSCAPE MODE (MOBILE)
   =================================== */
@media (max-width: 768px) and (orientation: landscape) {
    .sidebar-container {
        width: 240px !important;
    }
    
    .top-nav-bar {
        height: 50px !important;
    }
    
    .app-container {
        padding-top: 50px !important;
    }
    
    .modal,
    .custom-modal {
        max-height: 95vh !important;
    }
}

/* ===================================
   SMALL MOBILE (< 480px)
   =================================== */
@media (max-width: 480px) {
    /* Further reduce sizing */
    h1 { font-size: 20px !important; }
    h2 { font-size: 18px !important; }
    h3 { font-size: 16px !important; }
    
    .sidebar-container {
        width: 260px !important;
    }
    
    .dashboard-card {
        padding: 12px !important;
    }
    
    .metric-number {
        font-size: 1.75rem !important;
    }
    
    /* Stack everything */
    .col-6:not(.mobile-2-col) {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
}

/* ===================================
   TABLET SPECIFIC (481px - 768px)
   =================================== */
@media (min-width: 481px) and (max-width: 768px) {
    /* Adjust for tablet */
    .sidebar-container {
        width: 300px;
    }
    
    /* 2-column grid for tablets */
    .col-xl-2,
    .col-xl-3,
    .col-lg-3 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
    
    .modal,
    .custom-modal {
        max-width: 90% !important;
        border-radius: 20px !important;
    }
    
    .modal-overlay,
    .custom-modal-container {
        align-items: center !important;
    }
}

/* ===================================
   BOTTOM NAVIGATION BAR (MOBILE)
   =================================== */
/* Show bottom nav on mobile by default */
mobile-bottom-nav {
    display: none;
}

@media (max-width: 768px) {
    mobile-bottom-nav {
        display: block !important;
    }
    
    .mobile-bottom-nav,
    mobile-bottom-nav {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        height: 65px;
        background: linear-gradient(180deg, #1a1f1d 0%, #0F1412 100%);
        border-top: 1px solid rgba(45, 212, 191, 0.2);
        display: flex !important;
        justify-content: space-around;
        align-items: center;
        z-index: 1000;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
        padding: 0 12px;
    }
    
    .bottom-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        flex: 1;
        min-width: 60px;
        height: 100%;
        cursor: pointer;
        position: relative;
        transition: all 0.3s ease;
        -webkit-tap-highlight-color: transparent;
        padding: 8px 4px;
    }
    
    .bottom-nav-item i {
        color: rgba(255, 255, 255, 0.6);
        font-size: 20px;
        margin-bottom: 4px;
        transition: all 0.3s ease;
    }
    
    .bottom-nav-item span {
        color: rgba(255, 255, 255, 0.6);
        font-size: 10px;
        font-weight: 600;
        text-align: center;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
        transition: all 0.3s ease;
    }
    
    .bottom-nav-item:active {
        transform: scale(0.95);
    }
    
    .bottom-nav-item:hover i,
    .bottom-nav-item:active i {
        color: #2DD4BF;
        transform: translateY(-2px);
    }
    
    .bottom-nav-item:hover span,
    .bottom-nav-item:active span {
        color: #2DD4BF;
    }
    
    /* Active state indicator */
    .bottom-nav-item.active::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 3px;
        background: linear-gradient(90deg, #2DD4BF 0%, #22C55E 100%);
        border-radius: 0 0 3px 3px;
    }
    
    .bottom-nav-item.active i {
        color: #2DD4BF;
    }
    
    .bottom-nav-item.active span {
        color: #2DD4BF;
    }
    
    /* Adjust main content to account for bottom nav */
    .app-section,
    .main-content {
        padding-bottom: 80px !important;
    }
    
    /* Hide bottom nav on screens wider than 768px */
    @media (min-width: 769px) {
        .mobile-bottom-nav {
            display: none !important;
        }
    }
}

/* ===================================
   PRINT STYLES
   =================================== */
@media print {
    .sidebar-container,
    .mobile-side-bar-toggler,
    .mobile-bottom-nav,
    .top-nav-bar,
    .nav-icon,
    .user-dropdown-menu,
    .chips-container,
    .modal-overlay,
    .toast,
    .notification {
        display: none !important;
    }
    
    .app-section {
        margin-left: 0 !important;
        width: 100% !important;
    }
    
    * {
        background: white !important;
        color: black !important;
    }
}
