@charset "UTF-8";
:root {
  /* Primary accents (updated color scheme) */
  --themeprimaryclr: #3B82F6; /* bright blue */
  --themesecondaryclr: #6366F1; /* indigo */
  --themethirdclr: #10B981; /* emerald green */
  --themefourthclr: #F9FAFB; /* very light gray (panels) */
  --themefifthclr: #8B5CF6; /* vibrant purple */
  --themesixthclr: #64748B; /* slate blue-gray */
  --themeseventhclr: #4338CA; /* deep indigo */
  --themeeighthclr: #94A3B8; /* light blue-gray */
  --themeninthclr: #475569; /* dark blue-gray */
  --themetenthclr: #F97316; /* vibrant orange */
  /* Core neutrals */
  --plainclr: #1E293B; /* dark blue-gray */
  --darkclr: #0F172A; /* very dark blue */
  --lightbg: #FFFFFF; /* pure white */
  --bodyclr: #334155; /* medium blue-gray */
  --body-bgclr: #F1F5F9; /* light blue-gray */
  /* Header / Footer (light) */
  --headerclr: #1E293B;
  --headerbgclr: #FFFFFF;
  --footerclr: #1E293B;
  --footerbgclr: #FFFFFF;
  /* Navigation & list */
  --headingclr: #1E293B;
  --li-clr: #64748B;
  --lihover-clr: #8B5CF6;
  --anchorclr: #64748B;
  --btnhover: #8B5CF6;
  --anchor-hover-clr: #FFFFFF;
  /* Links */
  --linkclr: #3B82F6;
  --link-hover-clr: #1E40AF;
  --link-hover-bg-clr: #EFF6FF;
  --link-bg-clr: #FFFFFF;
  /* Misc */
  --hoverclr: #FFFFFF;
  --iconclr: #F97316; /* orange icons */
  --icon-hover-clr: #3B82F6;
  --tablehover: #F8FAFC;
  --dark-text-color: #F1F5F9;
  /* Sections and borders (light) */
  --dark-section-color: #FFFFFF;
  --dark-menu-bg-color: #FFFFFF;
  --main-border: #E2E8F0;
  --light-border: #E2E8F0;
  --borderone: #E2E8F0;
  --bordertwo: #CBD5E1;
  --border-three: #94A3B8;
  --section-color: #FFFFFF;
  --section-color-two: #F8FAFC;
  --section-color-three: #F1F5F9;
  --section-color-four: #EFF6FF;
  --section-color-five: #FFFFFF;
  /* badges */
  --greenclr: #10B981;
  --orangecolor: #F97316;
  --redclr: #EF4444;
  --yellowclr: #F59E0B;
  --badge-danger: #EF4444;
  --badge-warning: #F59E0B;
  --badge-success: #10B981;
  --badge-light: #F1F5F9;
  --badge-dark: #1E293B;
  --badge-semi-dark: #334155;
  --badge-semi-light: #EFF6FF;
  --badge-info: #3B82F6;
  /* overlays & gradients */
  --overlayone: rgba(59, 130, 246, 0.06);
  --overlaytwo: rgba(59, 130, 246, 0.08);
  --overlaythree: rgba(59, 130, 246, 0.12);
  --overlayfour: rgba(255, 255, 255, 0.1);
  --overlayfive: rgba(139, 92, 246, 0.06);
  --gradientone: linear-gradient(135deg, #EFF6FF, #FDF4FF);
  --gradienttwo: linear-gradient(135deg, #3B82F6, #10B981);
  --gradientthree: linear-gradient(135deg, #FEE2E2, #FECACA);
  --gradientfour: linear-gradient(135deg, #F8FAFC, #F1F5F9);
  --gradientfive: linear-gradient(135deg, #F97316, #F59E0B);
  --gradientsix: linear-gradient(135deg, #DBEAFE, #EFF6FF);
  /* shadows */
  --shadowone: 0 6px 18px rgba(30, 41, 59, 0.06);
  --shadowtwo: 0 10px 30px rgba(30, 41, 59, 0.08);
  --shadowthree: 0 14px 40px rgba(30, 41, 59, 0.10);
  --shadowfour: 0 18px 50px rgba(30, 41, 59, 0.12);
  --shadowfive: 0 24px 70px rgba(30, 41, 59, 0.14);
  --primaryfont: "Poppins", sans-serif;
  --secondaryfont: "Inter", sans-serif;
}

/* Dark mode variables */
[data-theme=dark] {
  /* Primary accents (dark mode) */
  --themeprimaryclr: #60A5FA; /* lighter blue */
  --themesecondaryclr: #818CF8; /* lighter indigo */
  --themethirdclr: #34D399; /* lighter green */
  --themefourthclr: #1F2937; /* dark gray */
  --themefifthclr: #A78BFA; /* lighter purple */
  --themesixthclr: #94A3B8; /* lighter blue-gray */
  --themeseventhclr: #6366F1; /* bright indigo */
  --themeeighthclr: #64748B; /* medium blue-gray */
  --themeninthclr: #CBD5E1; /* light blue-gray */
  --themetenthclr: #FB923C; /* lighter orange */
  /* Core neutrals */
  --plainclr: #F1F5F9; /* light blue-gray */
  --darkclr: #0F172A; /* very dark blue */
  --lightbg: #111827; /* dark blue */
  --bodyclr: #CBD5E1; /* light blue-gray */
  --body-bgclr: #0F172A; /* very dark blue */
  /* Header / Footer (dark) */
  --headerclr: #F1F5F9;
  --headerbgclr: #1E293B;
  --footerclr: #F1F5F9;
  --footerbgclr: #1E293B;
  /* Navigation & list */
  --headingclr: #F1F5F9;
  --li-clr: #94A3B8;
  --lihover-clr: #A78BFA;
  --anchorclr: #94A3B8;
  --btnhover: #A78BFA;
  --anchor-hover-clr: #FFFFFF;
  /* Links */
  --linkclr: #60A5FA;
  --link-hover-clr: #93C5FD;
  --link-hover-bg-clr: #1E3A8A;
  --link-bg-clr: #1E293B;
  /* Misc */
  --hoverclr: #FFFFFF;
  --iconclr: #FB923C;
  --icon-hover-clr: #60A5FA;
  --tablehover: #1E293B;
  --dark-text-color: #F1F5F9;
  /* Sections and borders (dark) */
  --dark-section-color: #1F2937;
  --dark-menu-bg-color: #1E293B;
  --main-border: #374151;
  --light-border: #374151;
  --borderone: #374151;
  --bordertwo: #4B5563;
  --border-three: #6B7280;
  --section-color: #1F2937;
  --section-color-two: #1E293B;
  --section-color-three: #111827;
  --section-color-four: #1E3A8A;
  --section-color-five: #1F2937;
  /* badges */
  --greenclr: #34D399;
  --orangecolor: #FB923C;
  --redclr: #F87171;
  --yellowclr: #FBBF24;
  --badge-danger: #F87171;
  --badge-warning: #FBBF24;
  --badge-success: #34D399;
  --badge-light: #374151;
  --badge-dark: #0F172A;
  --badge-semi-dark: #1E293B;
  --badge-semi-light: #1E3A8A;
  --badge-info: #60A5FA;
  /* overlays & gradients */
  --overlayone: rgba(96, 165, 250, 0.1);
  --overlaytwo: rgba(96, 165, 250, 0.15);
  --overlaythree: rgba(96, 165, 250, 0.2);
  --overlayfour: rgba(255, 255, 255, 0.05);
  --overlayfive: rgba(167, 139, 250, 0.1);
  --gradientone: linear-gradient(135deg, #1E3A8A, #3730A3);
  --gradienttwo: linear-gradient(135deg, #60A5FA, #34D399);
  --gradientthree: linear-gradient(135deg, #7F1D1D, #991B1B);
  --gradientfour: linear-gradient(135deg, #1E293B, #0F172A);
  --gradientfive: linear-gradient(135deg, #EA580C, #D97706);
  --gradientsix: linear-gradient(135deg, #1E40AF, #1E3A8A);
  /* shadows */
  --shadowone: 0 6px 18px rgba(0, 0, 0, 0.2);
  --shadowtwo: 0 10px 30px rgba(0, 0, 0, 0.25);
  --shadowthree: 0 14px 40px rgba(0, 0, 0, 0.3);
  --shadowfour: 0 18px 50px rgba(0, 0, 0, 0.35);
  --shadowfive: 0 24px 70px rgba(0, 0, 0, 0.4);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--secondaryfont);
  color: var(--bodyclr);
  overflow-x: hidden;
  background-attachment: fixed;
  transition: all 0.3s ease;
  background-color: var(--body-bgclr);
  line-height: 1.6;
}

body[data-theme=dark] {
  background-image: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
}

/* Layout Structure */
.expand {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
  width: 100%;
}

/* Sidebar Styles */
.sidebar-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100vh;
  background: var(--dark-menu-bg-color);
  border-right: 1px solid var(--main-border);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  transform: translateX(0);
  box-shadow: var(--shadowone);
}

.sidebar-header {
  padding: 20px 15px;
  color: var(--plainclr);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--main-border);
  height: 80px;
  background: var(--headerbgclr);
  flex-shrink: 0;
}

.brand-logo {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}
.brand-logo .logo-sm {
  display: none;
  max-width: 35px;
}
.brand-logo .logo-lg {
  display: block;
  max-width: 120px;
  transition: all 0.3s ease;
}

.sidebar-menu {
  flex: 1;
  padding: 15px 10px;
  overflow-y: auto;
  overflow-x: hidden;
}
.sidebar-menu::-webkit-scrollbar {
  width: 4px;
}
.sidebar-menu::-webkit-scrollbar-track {
  background: transparent;
}
.sidebar-menu::-webkit-scrollbar-thumb {
  background: var(--main-border);
  border-radius: 2px;
}
.sidebar-menu::-webkit-scrollbar-thumb:hover {
  background: var(--themeprimaryclr);
}

.menu-item {
  margin-bottom: 5px;
  position: relative;
}

.menu-link {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  color: var(--plainclr);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.menu-link:hover {
  background: var(--themeprimaryclr);
  color: var(--anchor-hover-clr);
  transform: translateX(5px);
}

.menu-item.active > .menu-link {
  background: var(--themeprimaryclr);
  color: var(--anchor-hover-clr);
  box-shadow: var(--shadowtwo);
}

.menu-item.active > .menu-link i {
  color: var(--anchor-hover-clr);
}

.menu-link i:not(.submenu-toggle i) {
  width: 24px;
  margin-right: 12px;
  font-size: 18px;
  transition: all 0.3s ease;
  color: var(--iconclr);
  position: relative;
  z-index: 1;
}

.menu-link:hover i:not(.submenu-toggle i),
.menu-item.active > .menu-link i:not(.submenu-toggle i) {
  color: var(--anchor-hover-clr);
  transform: scale(1.1);
}

.menu-text {
  flex: 1;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.menu-link:hover .menu-text,
.menu-item.active > .menu-link .menu-text {
  color: var(--anchor-hover-clr);
}

.menu-badge {
  padding: 3px 8px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-left: 8px;
  background: var(--badge-light);
  color: var(--plainclr);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

body[data-theme=dark] .menu-badge {
  background: var(--badge-dark);
  color: var(--plainclr);
}

.badge-primary {
  background-color: var(--themeprimaryclr) !important;
  color: var(--lightbg) !important;
}

.badge-success {
  background-color: var(--greenclr) !important;
  color: var(--lightbg) !important;
}

.submenu-toggle {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-left: 10px;
  position: relative;
  z-index: 1;
  color: var(--themesecondaryclr);
  flex-shrink: 0;
}
.submenu-toggle i {
  transition: transform 0.3s ease;
}

.menu-item.open .submenu-toggle i {
  transform: rotate(90deg);
  color: var(--anchor-hover-clr);
}

.submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: var(--section-color-five);
  border-radius: 8px;
  margin: 5px 0 5px 15px;
}
.submenu.open {
  max-height: 500px;
}

.submenu-item {
  padding: 0;
}

.submenu-link {
  display: block;
  padding: 10px 15px 10px 45px;
  color: var(--plainclr);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  position: relative;
  border-radius: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.submenu-link:before {
  content: "";
  position: absolute;
  left: 25px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--plainclr);
  transform: translateY(-50%);
  opacity: 0.5;
  transition: all 0.3s ease;
}
.submenu-link:hover, .submenu-link.active {
  background-color: var(--themefifthclr);
  color: var(--anchor-hover-clr);
  padding-left: 50px;
}
.submenu-link:hover:before, .submenu-link.active:before {
  background-color: var(--anchor-hover-clr);
  opacity: 1;
}

/* Sidebar Footer */
.sidebar-footer {
  padding: 15px;
  border-top: 1px solid var(--main-border);
  background: var(--dark-menu-bg-color);
  flex-shrink: 0;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradientone);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--plainclr);
  font-weight: bold;
  box-shadow: var(--shadowtwo);
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.user-avatar:hover {
  transform: scale(1.05);
  box-shadow: var(--shadowthree);
}

.user-details {
  flex: 1;
  min-width: 0;
}

.user-name {
  font-weight: 600;
  color: var(--plainclr);
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.user-role {
  font-size: 0.8rem;
  color: var(--themesecondaryclr);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mode-toggle-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mode-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--section-color);
  padding: 8px 15px;
  border-radius: 20px;
  cursor: pointer;
  border: 1px solid var(--main-border);
  transition: all 0.3s ease;
  position: relative;
  width: 100%;
}
.mode-toggle:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadowtwo);
}

.mode-icon {
  font-size: 16px;
  transition: all 0.3s ease;
  z-index: 2;
}

.mode-icon.sun {
  color: var(--themetenthclr);
}

.mode-icon.moon {
  color: var(--themesecondaryclr);
}

.toggle-switch {
  width: 32px;
  height: 18px;
  background-color: var(--themeeighthclr);
  border-radius: 20px;
  position: relative;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.toggle-switch::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: var(--lightbg);
  top: 2px;
  left: 2px;
  transition: all 0.3s ease;
}

body[data-theme=dark] .toggle-switch {
  background-color: var(--themethirdclr);
}

body[data-theme=dark] .toggle-switch::before {
  transform: translateX(14px);
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 280px;
  right: 0;
  z-index: 1025;
  background: var(--headerbgclr);
  border-bottom: 1px solid var(--main-border);
  padding: 0 30px;
  height: 80px;
  min-height: 80px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadowone);
}

.header-content {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  justify-content: space-between;
}

.header-left,
.header-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Footer Styles */
.footer {
  position: fixed;
  bottom: 0;
  left: 280px;
  right: 0;
  z-index: 1025;
  background: var(--footerbgclr);
  color: var(--footerclr);
  border-top: 1px solid var(--main-border);
  padding: 0 30px;
  min-height: 60px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Main Content Styles */
.main-content {
  position: fixed;
  top: 80px;
  left: 280px;
  right: 0;
  bottom: 60px;
  padding: 30px;
  transition: all 0.3s ease;
  overflow-y: auto;
  background: transparent;
}

.main-card {
  background: var(--section-color);
  border: 1px solid var(--main-border);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  color: var(--headingclr);
  transition: all 0.3s ease;
  box-shadow: var(--shadowone);
}
.main-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadowthree);
}

.main-card h2 {
  margin-bottom: 1rem;
  font-weight: 600;
  color: var(--headingclr);
}

.main-card h3 {
  color: var(--headingclr);
  margin-bottom: 1rem;
  font-weight: 600;
}

.main-card p {
  line-height: 1.6;
  margin-bottom: 1rem;
  color: var(--bodyclr);
}

.main-card ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.main-card li {
  margin-bottom: 0.5rem;
  position: relative;
  color: var(--bodyclr);
}
.main-card li::before {
  content: "•";
  color: var(--themeprimaryclr);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

/* Toggle buttons */
.sidebar-toggle,
.miniview-toggle {
  background: var(--section-color);
  color: var(--plainclr);
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid var(--main-border);
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.sidebar-toggle:hover,
.miniview-toggle:hover {
  background-color: var(--link-hover-bg-clr);
  transform: translateY(-2px);
  box-shadow: var(--shadowtwo);
  color: var(--themeprimaryclr);
}

/* Overlay for mobile */
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--overlaytwo);
  z-index: 999;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.sidebar-overlay.show {
  display: block;
  opacity: 1;
}

/* Responsive styles */
@media (max-width: 992px) {
  .miniview-toggle {
    display: none;
  }
  .sidebar-container {
    transform: translateX(-100%);
    width: 280px;
  }
  .sidebar-container.open {
    transform: translateX(0);
  }
  .header {
    left: 0;
    right: 0;
  }
  .footer {
    left: 0;
    right: 0;
  }
  .main-content {
    left: 0;
    right: 0;
    padding: 20px;
  }
  .sidebar-toggle {
    display: flex;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1001;
  }
}
/* Mini view styles */
@media (min-width: 993px) {
  .sidebar-toggle {
    display: none;
  }
  .miniview .sidebar-container {
    width: 80px;
  }
  .miniview .menu-text,
  .miniview .submenu-toggle,
  .miniview .menu-badge,
  .miniview .user-details,
  .miniview .mode-text {
    display: none;
  }
  .miniview .menu-link {
    justify-content: center;
    padding: 12px 15px;
  }
  .miniview .menu-link i:not(.submenu-toggle i) {
    margin-right: 0;
  }
  .miniview .brand-logo .logo-sm {
    display: block;
  }
  .miniview .brand-logo .logo-lg {
    display: none;
  }
  .miniview .header {
    left: 80px;
  }
  .miniview .footer {
    left: 80px;
  }
  .miniview .main-content {
    left: 80px;
  }
  .miniview .submenu {
    position: absolute;
    left: 80px;
    top: 0;
    width: 200px;
    margin: 0;
    z-index: 1001;
    box-shadow: var(--shadowthree);
  }
  .miniview .sidebar-footer {
    padding: 10px;
  }
  .miniview .user-info {
    justify-content: center;
  }
  .miniview .user-avatar {
    margin-right: 0;
  }
  .miniview .mode-toggle {
    justify-content: center;
    padding: 8px;
  }
}
/* Scrollbar styles */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  border-radius: 4px;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
  background: var(--main-border);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--themeprimaryclr);
}

/* Animation keyframes */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideIn {
  from {
    transform: translateX(-10px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
/* Utility Classes */
.fade-in {
  animation: fadeIn 0.3s ease-in-out;
}

.slide-in {
  animation: slideIn 0.3s ease-out;
}

/* Ensure proper layout */
html, body {
  height: 100%;
  overflow: hidden;
}

.expand {
  height: 100vh;
}

/* Fix for iOS Safari */
@supports (-webkit-touch-callout: none) {
  body {
    height: -webkit-fill-available;
  }
  .expand {
    height: -webkit-fill-available;
  }
  .sidebar-container,
  .main-content {
    height: -webkit-fill-available;
  }
}/*# sourceMappingURL=sidebarDesign5.css.map */