/* ========================================
   Flyin' Wrench Dashboard - Clean Light Theme
   Site Styles v2.0
   ======================================== */

:root {
  /* Primary Colors */
  --primary: #3b82f6;
  --primary-dark: #2563eb;
  --primary-light: #dbeafe;

  /* Success/Positive - Green */
  --success: #22c55e;
  --success-dark: #16a34a;
  --success-light: #dcfce7;

  /* Warning/Attention - Orange */
  --warning: #f97316;
  --warning-dark: #ea580c;
  --warning-light: #ffedd5;

  /* Error/Negative - Red */
  --error: #ef4444;
  --error-dark: #dc2626;
  --error-light: #fee2e2;

  /* Backgrounds */
  --bg: #f8fafc;
  --bg-card: #ffffff;
  --bg-hover: #f1f5f9;

  /* Sidebar - Keep dark for contrast */
  --sidebar: #1e293b;
  --sidebar-text: #ffffff;
  --sidebar-muted: #94a3b8;
  --sidebar-hover: rgba(255, 255, 255, 0.08);
  --sidebar-active: rgba(255, 255, 255, 0.12);

  /* Text */
  --text: #1e293b;
  --text-secondary: #64748b;
  --muted: #94a3b8;

  /* Borders */
  --border: #e2e8f0;
  --border-dark: #cbd5e1;

  /* Cards */
  --card: #ffffff;
  --card-strong: #f8fafc;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);

  /* Border Radius */
  --radius: 8px;
  --radius-lg: 12px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

/* APP LAYOUT */
.app-shell {
  display: flex;
  min-height: 100vh;
  width: 100%;
  background: var(--bg);
}

/* SIDEBAR - Keeping dark for contrast */
.sidebar {
  width: 240px;
  min-width: 240px;
  background: var(--sidebar);
  color: var(--sidebar-text);
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 8px 14px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  object-fit: contain;
  background: #fff;
  padding: 2px;
}

.brand-name {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.1;
  color: #fff;
}

/* NAV */
.nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 4px;
}

.nav-item {
  display: block;
  color: var(--sidebar-text);
  text-decoration: none;
  padding: 10px 12px;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 14px;
  transition: background 0.15s;
}

.nav-item:hover {
  background: var(--sidebar-hover);
}

.nav-item.active {
  background: var(--sidebar-active);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.nav-section-title {
  margin: 10px 8px 4px 8px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sidebar-muted);
  font-weight: 700;
}

.nav-group .nav-item {
  user-select: none;
}

.nav-sub {
  display: none;
  flex-direction: column;
  gap: 2px;
  margin: 4px 0 6px 8px;
  padding-left: 6px;
  border-left: 1px dashed rgba(255, 255, 255, 0.15);
}

.nav-group.open .nav-sub {
  display: flex;
}

.nav-sub-item {
  color: var(--sidebar-text);
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 13px;
  opacity: 0.95;
  transition: background 0.15s;
}

.nav-sub-item:hover {
  background: var(--sidebar-hover);
}

.nav-sub-item.active {
  background: var(--sidebar-active);
}

/* MAIN CONTENT */
.main {
  flex: 1;
  padding: 24px 28px;
  background: var(--bg);
  min-height: 100vh;
}

/* PAGE HEADERS */
.page h1 {
  margin: 0 0 8px 0;
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
}

.page p {
  margin: 0 0 16px 0;
  color: var(--text-secondary);
}

/* CARDS */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.kpi-card {
  min-height: 120px;
}

.kpi-card h2,
.kpi-card h3 {
  margin: 0 0 4px 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}

/* KPI GRID */
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 8px;
}

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

@media (max-width: 700px) {
  .kpi-grid { grid-template-columns: 1fr; }
}

/* TEXT UTILITIES */
.small {
  color: var(--text-secondary);
  font-size: 13px;
}

.text-muted {
  color: var(--muted);
}

.text-success {
  color: var(--success);
}

.text-warning {
  color: var(--warning);
}

.text-error {
  color: var(--error);
}

.text-primary {
  color: var(--primary);
}

/* QUICK LINKS CARD */
.quick-links {
  display: inline-block;
  width: auto;
  max-width: 100%;
}

.quick-links a {
  margin-right: 10px;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.quick-links a:hover {
  text-decoration: underline;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.15s;
}

.btn:hover {
  background: var(--bg-hover);
  border-color: var(--border-dark);
}

.btn.primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.btn.primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn.success {
  background: var(--success);
  color: #fff;
  border-color: var(--success);
}

.btn.success:hover {
  background: var(--success-dark);
  border-color: var(--success-dark);
}

.btn.danger, .btn-danger {
  background: var(--error);
  color: #fff;
  border-color: var(--error);
}

.btn.danger:hover, .btn-danger:hover {
  background: var(--error-dark);
  border-color: var(--error-dark);
}

.btn.small {
  padding: 6px 12px;
  font-size: 13px;
}

/* FORMS */
input, select, textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-size: 14px;
  outline: none;
  background: var(--card);
  color: var(--text);
  transition: border-color 0.15s, box-shadow 0.15s;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

label {
  font-weight: 600;
  font-size: 13px;
  margin: 8px 0 4px 0;
  display: block;
  color: var(--text);
}

/* TABLES */
table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card);
}

th, td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

th {
  background: var(--card-strong);
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

td {
  font-size: 14px;
  color: var(--text);
}

tr:hover td {
  background: var(--bg-hover);
}

/* BADGES */
.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

.badge-green, .badge-success {
  background: var(--success-light);
  color: #166534;
}

.badge-blue, .badge-primary {
  background: var(--primary-light);
  color: #1e40af;
}

.badge-yellow, .badge-warning {
  background: var(--warning-light);
  color: #92400e;
}

.badge-red, .badge-error, .badge-danger {
  background: var(--error-light);
  color: #991b1b;
}

.badge-gray {
  background: var(--bg-hover);
  color: var(--text-secondary);
}

/* LOGIN PAGE */
body.login {
  min-height: 100vh;
  background: var(--bg);
}

.login-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.login-card {
  width: 420px;
  max-width: 90vw;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.login-card .logo {
  width: 64px;
  height: 64px;
  margin: 0 auto 12px auto;
  border-radius: 999px;
  background: var(--bg);
  padding: 4px;
  object-fit: contain;
}

/* REPORTS PAGE */
.reports-page {
  max-width: 900px;
}

.reports-subtitle {
  margin-bottom: 14px;
  color: var(--text-secondary);
}

.reports-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 6px;
}

.report-box {
  display: block;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 16px 20px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}

.report-box:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
  transform: translateY(-1px);
}

.report-box-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 4px;
}

.report-box-desc {
  color: var(--text-secondary);
  font-size: 14px;
}

.btn-back {
  display: inline-block;
  margin-top: 16px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
}

.btn-back:hover {
  border-color: var(--border-dark);
  background: var(--bg-hover);
}

/* LOADING SPINNER */
.loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  color: var(--text-secondary);
}

.spinner {
  width: 32px;
  height: 32px;
  border: 3px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-right: 12px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

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

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--border-dark);
  border-radius: 4px;
}

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

/* ALERTS / NOTIFICATIONS */
.alert {
  padding: 12px 16px;
  border-radius: var(--radius);
  margin-bottom: 16px;
  font-size: 14px;
}

.alert-success {
  background: var(--success-light);
  color: #166534;
  border: 1px solid #bbf7d0;
}

.alert-warning {
  background: var(--warning-light);
  color: #92400e;
  border: 1px solid #fed7aa;
}

.alert-error, .alert-danger {
  background: var(--error-light);
  color: #991b1b;
  border: 1px solid #fecaca;
}

.alert-info {
  background: var(--primary-light);
  color: #1e40af;
  border: 1px solid #bfdbfe;
}

/* TABS */
.tabs {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}

.tab {
  padding: 12px 20px;
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  transition: all 0.15s;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}

.tab:hover {
  color: var(--text);
}

.tab.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

/* MODAL */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 24px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.modal-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
}

.modal-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--muted);
  padding: 0;
  line-height: 1;
}

.modal-close:hover {
  color: var(--text);
}

/* Kill old pseudo backgrounds */
.page *::before,
.page *::after {
  background-image: none !important;
  box-shadow: none !important;
  border: 0 !important;
}

.reports-list a::before,
.reports-list li::before,
.reports-list .report-link::before,
.reports-list .report-item::before {
  content: none !important;
  display: none !important;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .sidebar {
    display: none;
  }

  .main {
    padding: 16px;
  }

  .page h1 {
    font-size: 24px;
  }
}

/* ==========================================
   COMPREHENSIVE RESPONSIVE STYLES
   Phone: < 480px
   Tablet: 481px - 768px
   Small Desktop: 769px - 1024px
   Desktop: > 1024px
   ========================================== */

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
}

/* Tablet and below - show mobile menu button */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1001;
    background: var(--primary, #3b82f6);
    border-radius: 8px;
    width: 44px;
    height: 44px;
  }

  .sidebar {
    position: fixed;
    left: -280px;
    top: 0;
    height: 100vh;
    width: 280px;
    z-index: 1000;
    transition: left 0.3s ease;
    overflow-y: auto;
  }

  .sidebar.open {
    left: 0;
  }

  .sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
  }

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

  .app-shell {
    display: block;
  }

  .main {
    margin-left: 0;
    padding: 16px;
    padding-top: 70px;
  }

  /* Forms */
  .form-row {
    flex-direction: column;
  }

  .form-group {
    width: 100% !important;
    min-width: 100% !important;
  }

  /* Buttons */
  .btn-group {
    flex-direction: column;
    gap: 8px;
  }

  .btn-group .btn {
    width: 100%;
  }

  /* Cards */
  .card {
    padding: 16px;
  }

  /* Tables - make scrollable */
  .table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  table {
    min-width: 600px;
  }

  /* Page header */
  .page-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

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

/* Phone specific */
@media (max-width: 480px) {
  .main {
    padding: 12px;
    padding-top: 60px;
  }

  .card {
    padding: 12px;
    border-radius: 8px;
  }

  h1 { font-size: 20px; }
  h2 { font-size: 18px; }
  h3 { font-size: 16px; }

  .btn {
    padding: 10px 16px;
    font-size: 14px;
  }

  input, select, textarea {
    font-size: 16px; /* Prevents zoom on iOS */
  }
}

/* Small tablet */
@media (min-width: 481px) and (max-width: 768px) {
  .main {
    padding: 20px;
    padding-top: 70px;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Utility classes for responsive */
.hide-mobile {
  display: block;
}

.show-mobile {
  display: none;
}

@media (max-width: 768px) {
  .hide-mobile {
    display: none !important;
  }
  
  .show-mobile {
    display: block !important;
  }
}

/* Fix for iOS input zoom */
@media screen and (max-width: 768px) {
  input[type="text"],
  input[type="email"],
  input[type="password"],
  input[type="number"],
  input[type="date"],
  input[type="time"],
  select,
  textarea {
    font-size: 16px !important;
  }
}


/* ==========================================
   MOBILE-FIRST ENHANCEMENTS v2.0
   Added: January 2026
   ========================================== */

/* Touch-friendly tap targets */
@media (max-width: 768px) {
  .btn, button, a.nav-item, .nav-sub-item {
    min-height: 44px;
    min-width: 44px;
  }
  
  /* Larger touch targets for interactive elements */
  input[type="checkbox"],
  input[type="radio"] {
    width: 24px;
    height: 24px;
  }
  
  /* Better spacing for touch */
  .nav-item {
    padding: 14px 16px !important;
  }
  
  .nav-sub-item {
    padding: 12px 16px !important;
  }
}

/* Improved mobile navigation */
@media (max-width: 768px) {
  .sidebar {
    width: 85vw;
    max-width: 320px;
  }
  
  .brand {
    padding: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  
  .brand img {
    max-width: 120px;
  }
  
  .nav {
    padding: 8px 0;
  }
  
  /* Sticky mobile header */
  .mobile-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 56px;
    background: var(--sidebar);
    display: flex;
    align-items: center;
    padding: 0 16px;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }
}

/* Mobile cards */
@media (max-width: 768px) {
  .card {
    margin-bottom: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  }
  
  .card-header {
    padding: 12px 16px;
  }
  
  .card-body {
    padding: 16px;
  }
  
  /* Stack card actions */
  .card-actions {
    flex-direction: column;
    gap: 8px;
  }
  
  .card-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Mobile-friendly tables */
@media (max-width: 768px) {
  /* Card-style tables on mobile */
  .table-responsive-cards tbody tr {
    display: block;
    background: var(--card);
    margin-bottom: 12px;
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  }
  
  .table-responsive-cards thead {
    display: none;
  }
  
  .table-responsive-cards td {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border: none;
    border-bottom: 1px solid var(--border);
  }
  
  .table-responsive-cards td:last-child {
    border-bottom: none;
  }
  
  .table-responsive-cards td::before {
    content: attr(data-label);
    font-weight: 600;
    color: var(--text-secondary);
  }
}

/* Mobile form improvements */
@media (max-width: 768px) {
  .form-group {
    margin-bottom: 16px;
  }
  
  .form-group label {
    font-size: 14px;
    margin-bottom: 6px;
    display: block;
  }
  
  input, select, textarea {
    padding: 12px;
    border-radius: 8px;
  }
  
  /* Full-width selects */
  select {
    width: 100%;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns=http://www.w3.org/2000/svg width=12 height=12 viewBox=0 0 12 12%3E%3Cpath fill=%23666 d=M6 8L1 3h10z/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
  }
  
  /* Inline form groups stack */
  .form-inline {
    flex-direction: column;
  }
  
  .form-inline .form-group {
    width: 100%;
  }
}

/* Mobile stats/KPIs */
@media (max-width: 768px) {
  .stat-card, .kpi-card {
    padding: 16px;
  }
  
  .stat-value, .kpi-value {
    font-size: 28px;
  }
  
  .stat-label, .kpi-label {
    font-size: 12px;
  }
  
  /* 2-column grid for stats on mobile */
  .stats-grid, .kpi-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

/* Phone-specific (< 480px) */
@media (max-width: 480px) {
  .stats-grid, .kpi-grid {
    grid-template-columns: 1fr;
  }
  
  .stat-value, .kpi-value {
    font-size: 24px;
  }
  
  /* Full width buttons */
  .btn {
    width: 100%;
    text-align: center;
  }
  
  .btn-group {
    width: 100%;
  }
  
  /* Compact page header */
  .page-header {
    padding: 12px 0;
  }
  
  .page-header h1 {
    font-size: 18px;
    margin-bottom: 8px;
  }
}

/* Modal improvements for mobile */
@media (max-width: 768px) {
  .modal {
    padding: 0;
  }
  
  .modal-content {
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
    border-radius: 0;
    margin: 0;
  }
  
  .modal-header {
    position: sticky;
    top: 0;
    background: var(--card);
    z-index: 10;
    padding: 16px;
    border-bottom: 1px solid var(--border);
  }
  
  .modal-body {
    padding: 16px;
    overflow-y: auto;
  }
  
  .modal-footer {
    position: sticky;
    bottom: 0;
    background: var(--card);
    padding: 16px;
    border-top: 1px solid var(--border);
  }
}

/* Swipe-friendly tabs */
@media (max-width: 768px) {
  .tabs {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 0;
    padding-bottom: 2px;
  }
  
  .tab {
    flex: 0 0 auto;
    scroll-snap-align: start;
    padding: 12px 20px;
    white-space: nowrap;
  }
  
  .tabs::-webkit-scrollbar {
    display: none;
  }
}

/* Bottom action bar for mobile */
.mobile-action-bar {
  display: none;
}

@media (max-width: 768px) {
  .mobile-action-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--card);
    padding: 12px 16px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    gap: 12px;
    z-index: 100;
  }
  
  .mobile-action-bar .btn {
    flex: 1;
  }
  
  /* Add padding to main content when action bar is present */
  .has-action-bar .main {
    padding-bottom: 80px;
  }
}

/* Safe area insets for notched phones */
@supports (padding: env(safe-area-inset-bottom)) {
  @media (max-width: 768px) {
    .main {
      padding-bottom: calc(16px + env(safe-area-inset-bottom));
    }
    
    .sidebar {
      padding-bottom: env(safe-area-inset-bottom);
    }
  }
}

/* Print styles - hide mobile elements */
@media print {
  .mobile-menu-toggle,
  .mobile-action-bar,
  .sidebar-overlay {
    display: none !important;
  }
}
