/* ==========================================================================
   Design System & Modern Styles - PDF Platform
   ========================================================================== */

:root {
  /* Primary & Accent Palettes */
  --primary: #2563eb;
  --primary-hover: #1d4ed8;
  --primary-dark: #1e40af;
  --primary-light: #60a5fa;
  --primary-subtle: #eff6ff;

  --danger: #ef4444;
  --danger-hover: #dc2626;
  --danger-dark: #b91c1c;
  --danger-subtle: #fef2f2;

  --success: #10b981;
  --success-subtle: #ecfdf5;
  
  --warning: #f59e0b;
  --warning-subtle: #fffbeb;

  --info: #06b6d4;
  --info-subtle: #ecfeff;

  /* Neutrals & Dark Theme */
  --bg-body: #f8fafc;
  --bg-surface: #ffffff;
  --bg-surface-hover: #f1f5f9;
  --border-color: #e2e8f0;
  --border-light: #f1f5f9;

  --text-main: #0f172a;
  --text-muted: #64748b;
  --text-subtle: #94a3b8;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.08), 0 2px 4px -1px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 10px 25px -3px rgba(15, 23, 42, 0.1), 0 4px 6px -2px rgba(15, 23, 42, 0.05);
  --shadow-xl: 0 20px 35px -5px rgba(15, 23, 42, 0.15), 0 10px 10px -5px rgba(15, 23, 42, 0.04);
  --shadow-glow-primary: 0 0 20px rgba(37, 99, 235, 0.25);
  --shadow-glow-danger: 0 0 20px rgba(239, 68, 68, 0.25);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 9999px;
}

/* Global Typography & Reset */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Cairo', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
  background-color: var(--bg-body);
  color: var(--text-main);
  direction: rtl;
  text-align: right;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Subtle background color helpers for badges and icons */
.bg-primary-subtle { background-color: rgba(37, 99, 235, 0.12) !important; color: #2563eb !important; }
.bg-success-subtle { background-color: rgba(16, 185, 129, 0.12) !important; color: #059669 !important; }
.bg-danger-subtle { background-color: rgba(239, 68, 68, 0.12) !important; color: #dc2626 !important; }
.bg-warning-subtle { background-color: rgba(245, 158, 11, 0.14) !important; color: #d97706 !important; }
.bg-info-subtle { background-color: rgba(6, 182, 212, 0.14) !important; color: #0891b2 !important; }
.bg-secondary-subtle { background-color: rgba(100, 116, 139, 0.12) !important; color: #475569 !important; }
.bg-dark-subtle { background-color: rgba(15, 23, 42, 0.12) !important; color: #0f172a !important; }

/* Navbar Enhancements & Text Sizing */
.modern-navbar {
  background: rgba(255, 255, 255, 0.96) !important;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
  box-shadow: 0 2px 15px rgba(15, 23, 42, 0.05);
  transition: all 0.3s ease;
  min-height: 68px;
  padding: 10px 0;
  width: 100%;
}

.modern-navbar .navbar-brand {
  font-size: 1.25rem !important;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0f172a !important;
  padding: 0;
  margin-left: 1.5rem;
  white-space: nowrap;
}

.modern-navbar .nav-link {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1e293b !important;
  padding: 8px 14px !important;
  border-radius: 10px;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.modern-navbar .nav-link:hover,
.modern-navbar .nav-link:focus {
  color: var(--primary) !important;
  background-color: rgba(37, 99, 235, 0.08);
}

.modern-navbar .nav-link.active {
  color: var(--primary) !important;
  background-color: rgba(37, 99, 235, 0.1);
}

.brand-badge-logo {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.35);
  font-size: 1rem;
  flex-shrink: 0;
}

/* Modern Tool Navigator Dropdown */
.modern-tool-navigator {
  width: 680px !important;
  max-width: 95vw !important;
  border-radius: 18px !important;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15) !important;
  border: 1px solid #e2e8f0 !important;
  background: #ffffff !important;
}

.tool-cat-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  transition: all 0.2s ease;
}

.tool-cat-box:hover {
  background: #ffffff;
  border-color: #cbd5e1;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}

.tool-mini-link {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #334155;
  text-decoration: none;
  transition: all 0.2s ease;
  margin: 2px 1px;
}

.tool-mini-link:hover {
  background: #2563eb;
  color: #ffffff !important;
  border-color: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 3px 8px rgba(37, 99, 235, 0.25);
}


/* Modern Tool Cards */
.tool-card-modern {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.tool-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), #3b82f6);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tool-card-modern:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: #cbd5e1;
}

.tool-card-modern:hover::before {
  opacity: 1;
}

.tool-icon-glow {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
  transition: transform 0.3s ease;
}

.tool-card-modern:hover .tool-icon-glow {
  transform: scale(1.1) rotate(-4deg);
}

/* Modern Drag & Drop Zone */
.modern-dropzone {
  border: 2px dashed #cbd5e1;
  border-radius: var(--radius-xl);
  padding: 48px 24px;
  text-align: center;
  background: #f8fafc;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
}

.modern-dropzone:hover,
.modern-dropzone.dragover {
  border-color: var(--primary);
  background: #eff6ff;
  transform: scale(1.008);
}

.modern-dropzone .dropzone-icon {
  font-size: 3.2rem;
  color: #94a3b8;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.modern-dropzone:hover .dropzone-icon,
.modern-dropzone.dragover .dropzone-icon {
  color: var(--primary);
  transform: translateY(-4px);
}

/* Auth Card Styles - Perfectly Centered */
.auth-wrapper {
  min-height: calc(100vh - 160px);
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 40px 16px;
  background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.08), transparent 45%),
              radial-gradient(circle at bottom left, rgba(239, 68, 68, 0.05), transparent 40%);
}

.auth-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 45px -10px rgba(15, 23, 42, 0.12);
  width: 100%;
  max-width: 480px;
  margin: 0 auto !important;
  overflow: hidden;
}

.auth-header {
  padding: 32px 32px 24px 32px;
  text-align: center;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  border-bottom: 1px solid #f1f5f9;
}

.auth-body {
  padding: 32px;
}

/* Premium Buttons */
.btn-premium-primary {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff !important;
  border: none;
  font-weight: 700;
  border-radius: var(--radius-full);
  padding: 10px 24px;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
  transition: all 0.25s ease;
}

.btn-premium-primary:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
  transform: translateY(-1px);
}

.btn-premium-danger {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: #ffffff !important;
  border: none;
  font-weight: 700;
  border-radius: var(--radius-full);
  padding: 10px 24px;
  box-shadow: 0 4px 14px rgba(239, 68, 68, 0.35);
  transition: all 0.25s ease;
}

.btn-premium-danger:hover {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.45);
  transform: translateY(-1px);
}

/* ==========================================================================
   AdminLTE 3 Fixed Vertical Right Sidebar (RTL) - Responsive for Mobile & iPad
   ========================================================================== */

/* Main Sidebar Placed Strictly on the Right */
.main-sidebar,
aside.main-sidebar {
  position: fixed !important;
  top: 0 !important;
  bottom: 0 !important;
  right: 0 !important;
  left: auto !important;
  width: 260px !important;
  height: 100vh !important;
  overflow-y: auto !important;
  z-index: 1050 !important;
  background: linear-gradient(180deg, #0f172a 0%, #020617 100%) !important;
  box-shadow: -3px 0 15px rgba(0, 0, 0, 0.15) !important;
  display: block !important;
  transition: transform 0.3s ease-in-out, width 0.3s ease-in-out !important;
}

/* Large Screens & Desktops (>= 992px): Expanded Sidebar on the Right */
@media (min-width: 992px) {
  .content-wrapper,
  .main-header,
  .main-footer {
    margin-right: 260px !important;
    margin-left: 0 !important;
  }

  body.sidebar-collapse .content-wrapper,
  body.sidebar-collapse .main-header,
  body.sidebar-collapse .main-footer {
    margin-right: 4.6rem !important;
    margin-left: 0 !important;
  }

  body.sidebar-collapse .main-sidebar {
    width: 4.6rem !important;
  }
}

/* Tablets (iPad) & Mobile Devices (< 992px): Strictly Off-canvas Smooth Overlay Sidebar */
@media (max-width: 991.98px) {
  .content-wrapper,
  .main-header,
  .main-footer,
  body.sidebar-mini .content-wrapper,
  body.sidebar-collapse .content-wrapper,
  body.sidebar-mini.sidebar-collapse .content-wrapper {
    margin-right: 0 !important;
    margin-left: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .main-sidebar,
  aside.main-sidebar,
  body.sidebar-mini .main-sidebar,
  body.sidebar-collapse .main-sidebar,
  body.sidebar-mini.sidebar-collapse .main-sidebar {
    width: 270px !important;
    right: 0 !important;
    left: auto !important;
    transform: translateX(280px) !important;
    box-shadow: none !important;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  }

  body.sidebar-open .main-sidebar,
  body.sidebar-open aside.main-sidebar,
  body.sidebar-open.sidebar-collapse .main-sidebar,
  body.sidebar-open.sidebar-mini .main-sidebar {
    transform: translateX(0) !important;
    box-shadow: -6px 0 25px rgba(0, 0, 0, 0.45) !important;
  }

  /* Ensure text inside sidebar is always full-width readable on mobile/tablet when open */
  body.sidebar-mini.sidebar-collapse .main-sidebar .brand-text,
  body.sidebar-mini.sidebar-collapse .main-sidebar .sidebar-category-badge,
  body.sidebar-mini.sidebar-collapse .main-sidebar .nav-sidebar .nav-link p {
    display: inline-block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
}

/* Touch Backdrop Overlay for AdminLTE Mobile & Tablet */
#sidebar-overlay,
.sidebar-overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: rgba(15, 23, 42, 0.65) !important;
  backdrop-filter: blur(3px) !important;
  -webkit-backdrop-filter: blur(3px) !important;
  z-index: 1045 !important;
  display: none !important;
  transition: opacity 0.3s ease !important;
}

body.sidebar-open #sidebar-overlay,
body.sidebar-open .sidebar-overlay {
  display: block !important;
  animation: fadeInOverlay 0.25s ease-in-out forwards !important;
}

@keyframes fadeInOverlay {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Sidebar Navigation Items */
.nav-sidebar {
  width: 100% !important;
  padding: 0 !important;
}

.nav-sidebar .nav-item {
  width: 100% !important;
  display: block !important;
}

.nav-sidebar .nav-link {
  display: flex !important;
  align-items: center !important;
  width: 100% !important;
  padding: 8px 14px !important;
  border-radius: 8px;
  color: #cbd5e1 !important;
  font-weight: 600;
  margin-bottom: 2px;
}

.nav-sidebar .nav-link:hover {
  background-color: rgba(255, 255, 255, 0.08) !important;
  color: #ffffff !important;
}

.nav-sidebar .nav-link.active {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) !important;
  color: #ffffff !important;
}

.nav-sidebar .nav-icon {
  margin-left: 0.65rem !important;
  margin-right: 0 !important;
  width: 1.3rem;
  text-align: center;
  font-size: 0.95rem;
}

.nav-sidebar .nav-treeview {
  padding-right: 1.2rem !important;
  padding-left: 0 !important;
}

.nav-sidebar .nav-treeview .nav-link {
  padding: 6px 12px 6px 6px !important;
  font-size: 0.88rem !important;
}

.nav-sidebar .nav-treeview .nav-icon {
  font-size: 0.82rem !important;
  margin-left: 0.5rem !important;
}

.nav-sidebar .nav-link > p > .right {
  position: absolute !important;
  left: 1rem !important;
  right: auto !important;
  top: 0.75rem !important;
  transition: transform 0.3s ease;
}

.nav-sidebar .menu-open > .nav-link > p > .right {
  transform: rotate(-90deg) !important;
}

.brand-link {
  text-align: right !important;
  padding: 14px 18px !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

.brand-link .brand-text {
  margin-right: 6px !important;
}

/* ==========================================================================
   Comprehensive Mobile & Tablet (iPad) Responsive System
   ========================================================================== */

/* 1. Mobile Mega Menu & Navbar Drawer (< 992px) */
@media (max-width: 991.98px) {
  .modern-navbar .navbar-brand {
    font-size: 1.15rem !important;
    margin-left: 0.5rem !important;
  }

  .modern-navbar .navbar-collapse {
    background: #ffffff;
    border-radius: 16px;
    padding: 16px;
    margin-top: 12px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
    border: 1px solid #e2e8f0;
    max-height: 80vh;
    overflow-y: auto;
  }

  .modern-navbar .nav-link {
    padding: 10px 14px !important;
    width: 100%;
    margin-bottom: 4px;
  }

  .modern-tool-navigator {
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 14px !important;
    padding: 12px !important;
    box-shadow: none !important;
    border: 1px solid #e2e8f0 !important;
    margin-top: 8px !important;
    position: static !important;
    transform: none !important;
  }

  .modern-tool-navigator .col-md-6 {
    margin-bottom: 10px;
  }

  .navbar-auth-buttons {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    width: 100% !important;
    margin-top: 12px !important;
    padding-top: 12px !important;
    border-top: 1px solid #f1f5f9 !important;
  }

  .navbar-auth-buttons .btn {
    flex: 1 1 calc(50% - 8px);
    text-align: center;
    justify-content: center;
    padding: 8px 12px !important;
    font-size: 0.88rem !important;
  }
}

/* 2. Responsive Hero Section, Typography & Search (< 768px) */
@media (max-width: 767.98px) {
  .hero-section {
    padding: 45px 16px 55px 16px !important;
  }

  .hero-badge {
    font-size: 0.8rem !important;
    padding: 6px 14px !important;
    margin-bottom: 16px !important;
    line-height: 1.4 !important;
  }

  .hero-title {
    font-size: 1.85rem !important;
    line-height: 1.35 !important;
    margin-bottom: 14px !important;
  }

  .hero-subtitle {
    font-size: 0.95rem !important;
    line-height: 1.65 !important;
    margin-bottom: 24px !important;
    padding: 0 4px;
  }

  .search-box-wrapper input {
    height: 52px !important;
    font-size: 0.95rem !important;
    padding-right: 48px !important;
    padding-left: 16px !important;
  }

  .search-box-wrapper .search-icon {
    right: 16px !important;
    font-size: 1.1rem !important;
  }

  /* Horizontal Swipeable Category Filter Pills */
  .category-filter-scroll,
  #categoryFilters,
  #dashFilterButtons {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    padding-bottom: 8px !important;
    gap: 8px !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
  }

  .category-filter-scroll::-webkit-scrollbar,
  #categoryFilters::-webkit-scrollbar,
  #dashFilterButtons::-webkit-scrollbar {
    display: none !important;
  }

  .filter-btn,
  .category-pill-dash {
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    font-size: 0.82rem !important;
    padding: 6px 14px !important;
  }

  /* Mobile Dropzone */
  .modern-dropzone {
    padding: 28px 16px !important;
    border-radius: 16px !important;
  }

  .modern-dropzone .dropzone-icon {
    font-size: 2.4rem !important;
    margin-bottom: 10px !important;
  }

  .modern-dropzone h5 {
    font-size: 1.05rem !important;
  }

  /* Mobile Auth Cards */
  .auth-wrapper {
    padding: 20px 12px !important;
    min-height: auto !important;
  }

  .auth-card {
    border-radius: 16px !important;
  }

  .auth-header {
    padding: 24px 18px 18px 18px !important;
  }

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

  /* Mobile Cards & Footers */
  .card-header.d-flex {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 12px !important;
  }

  .card-header.d-flex > div.d-flex {
    width: 100% !important;
  }

  .card-header.d-flex .btn,
  .card-header.d-flex a.btn {
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
  }

  .card-footer.d-flex {
    flex-direction: column-reverse !important;
    align-items: stretch !important;
    gap: 12px !important;
    text-align: center !important;
  }

  .card-footer.d-flex button,
  .card-footer.d-flex a.btn {
    width: 100% !important;
    justify-content: center !important;
  }

  .content-header {
    padding: 12px 6px !important;
  }

  .content-header h1 {
    font-size: 1.15rem !important;
    line-height: 1.4 !important;
    margin-bottom: 6px !important;
  }

  .content-header .breadcrumb {
    font-size: 0.8rem !important;
    flex-wrap: wrap !important;
    margin-top: 4px !important;
  }

  .content-wrapper > .content {
    padding: 0 4px !important;
  }

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

  /* Stat Boxes on Mobile Screens */
  .small-box,
  .dash-stat-box,
  .stat-card-custom {
    margin-bottom: 14px !important;
    border-radius: 14px !important;
  }

  .small-box h3,
  .dash-stat-box h3,
  .stat-card-custom h3 {
    font-size: 1.6rem !important;
    white-space: normal !important;
    word-break: break-word !important;
    line-height: 1.25 !important;
  }

  .small-box p,
  .dash-stat-box p,
  .stat-card-custom p {
    font-size: 0.88rem !important;
    line-height: 1.35 !important;
    margin-bottom: 4px !important;
  }

  .small-box .badge,
  .dash-stat-box .badge,
  .stat-card-custom .badge {
    font-size: 0.75rem !important;
    white-space: normal !important;
    display: inline-block !important;
    line-height: 1.3 !important;
  }

  .small-box .icon,
  .dash-stat-box .icon,
  .stat-card-custom .icon {
    font-size: 42px !important;
    top: 10px !important;
    opacity: 0.12 !important;
  }

  .small-box .small-box-footer,
  .dash-stat-box .small-box-footer,
  .stat-card-custom .small-box-footer {
    font-size: 0.82rem !important;
    padding: 6px 10px !important;
    border-radius: 0 0 12px 12px !important;
  }

  /* Preview Thumbnails */
  .preview-card {
    width: 90px !important;
    height: 90px !important;
  }
}

/* 3. Tablet (iPad) Refinements (768px to 991.98px) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-section {
    padding: 65px 24px 75px 24px !important;
  }

  .hero-title {
    font-size: 2.6rem !important;
  }

  .hero-subtitle {
    font-size: 1.1rem !important;
  }

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

/* 4. Touch Targets & Responsive Table Helpers */
@media (pointer: coarse) {
  .btn,
  .nav-link,
  .tool-mini-link,
  .category-pill-dash,
  .filter-btn {
    min-height: 38px;
    touch-action: manipulation;
  }
}

/* Smooth Horizontal Scrolling for Tables */
.table-responsive {
  -webkit-overflow-scrolling: touch !important;
  border-radius: 12px;
}

/* High-Contrast Black Hamburger Buttons (☰) */
button[data-widget="pushmenu"],
[data-widget="pushmenu"],
.btn-pushmenu-toggle,
.navbar-toggler {
  background-color: #f8fafc !important;
  border: 1.5px solid #cbd5e1 !important;
  color: #000000 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  border-radius: 8px !important;
}

button[data-widget="pushmenu"]:hover,
[data-widget="pushmenu"]:hover,
.btn-pushmenu-toggle:hover,
.navbar-toggler:hover {
  background-color: #e2e8f0 !important;
  border-color: #94a3b8 !important;
}

button[data-widget="pushmenu"] i,
[data-widget="pushmenu"] i,
button[data-widget="pushmenu"] svg,
[data-widget="pushmenu"] svg,
.btn-pushmenu-toggle i,
.btn-pushmenu-toggle svg,
.navbar-toggler i,
.navbar-toggler svg {
  color: #000000 !important;
  fill: #000000 !important;
  font-size: 1.35rem !important;
  display: block !important;
  opacity: 1 !important;
}

/* إخفاء زر القائمة الجانبية على شاشات الكمبيوتر الكبيرة */
@media (min-width: 992px) {
  button[data-widget="pushmenu"],
  [data-widget="pushmenu"],
  .btn-pushmenu-toggle {
    display: none !important;
  }
}

/* Bootstrap Icons in AdminLTE Sidebar */
.nav-sidebar .nav-link .nav-icon.bi,
.nav-sidebar .nav-link i.bi {
  font-size: 1.15rem !important;
  margin-left: 0.5rem !important;
  width: 1.6rem !important;
  text-align: center !important;
  display: inline-block !important;
}



