:root {
  /* Theme Colors (1 to 10) */
  --themeprimaryclr: #E2058F;
  --themesecondaryclr: #5D5D5D;
  --themethirdclr: #1BB174;
  --themefourthclr: #1C1C1C;
  --themefifthclr: #FF42B3;
  --themesixthclr: #554B4E;
  --themeseventhclr: #FF0099;
  --themeeighthclr: #6E6C6C;
  --themeninthclr: #212529BF;
  --themetenthclr: #F7CD73;
  --plainclr: #fff;
  --darkclr: #000;
  --lightbg: #fafafa;
  --bodyclr: #696969;
  --body-bgclr: #afb3ab;
  --headerclr: #fff;
  --headerbgclr: #defffc;
  --footerclr: #ffdada;
  --footerbgclr: #eebbbb;
  --headingclr: #000000;
  --li-clr: #dfd8d8;
  --lihover-clr: #474747;
  --anchorclr: #cdcdcd;
  --btnhover: #FF42B3;
  --anchor-hover-clr: #ffa1a1;
  --linkclr: #7cb5ff;
  --link-hover-clr: #3288f8;
  /* newly added colors */
  --link-hover-bg-clr: #f5f5f5;
  --link-bg-clr: #f0f0f0;
  --hoverclr: #000;
  --iconclr: #ff0000;
  --icon-hover-clr: #fff000;
  --tablehover: #cdcdcd;
  /* dark mode clrs*/
  --dark-text-color: #c0aaaa;
  --dark-section-color: #2a2a2a;
  --dark-menu-bg-color: #3f404e;
  --dark-menu-icon-color: #404654;
  /* borderclrs */
  --main-border: #e0e0e0;
  --light-border: #51535f;
  --borderone: #cdcdcd;
  --bordertwo: #dcdc45;
  --border-three: #ff0000;
  /* section colors */
  --section-color: #fafafa;
  --section-color-two: #000000;
  --section-color-three: #9b9b9b;
  --section-color-four: #313131;
  --section-color-five: #f8bfbf;
  /* Named Colors */
  --greenclr: #1bb174;
  --orangecolor: #ff9900;
  --redclr: #ff2b2b;
  --yellowclr: #f7cd73;
  /* badges color */
  --badge-danger: #ff0000;
  --badge-warning: #ff9900;
  --badge-success: #1bb174;
  --badge-light: #eff0f6;
  --badge-dark: #343a40;
  --badge-semi-dark: #495057;
  --badge-semi-light: #f8f9fa;
  --badge-info: #17a2b8;
  --fbclr: #1877F2;
  --ytclr: #FF0000;
  --twclr: #1DA1F2;
  --igclr: #C13584;
  --lnclr: #0A66C2;
  --ghclr: #333333;
  --waclr: #25D366;
  --scclr: #FFFC00;
  --rdclr: #FF4500;
  --tiktokclr: #010101;
  --pinterestclr: #E60023;
  /* Overlay Colors */
  --overlayone: rgba(0, 0, 0, 0.3);
  --overlaytwo: rgba(0, 0, 0, 0.5);
  --overlaythree: rgba(0, 0, 0, 0.7);
  --overlayfour: rgba(255, 255, 255, 0.2);
  --overlayfive: rgba(226, 5, 143, 0.4);
  /* Gradient Backgrounds */
  --gradientone: linear-gradient(135deg, #E2058F, #FF42B3);
  --gradienttwo: linear-gradient(135deg, #1bb174, #43a700);
  --gradientthree: linear-gradient(135deg, #ff6600, #ff9900);
  --gradientfour: linear-gradient(135deg, #000000, #434343);
  --gradientfive: linear-gradient(135deg, #f7cd73, #ffcc00);
  --gradientsix: linear-gradient(135deg, #5d5d5d, #1c1c1c);
  /* Box Shadows */
  --shadowone: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadowtwo: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadowthree: 0 10px 15px rgba(0, 0, 0, 0.15);
  --shadowfour: 0 12px 24px rgba(0, 0, 0, 0.2);
  --shadowfive: 0 20px 40px rgba(0, 0, 0, 0.25);
  /* Font Families */
  --primaryfont: "Lato", sans-serif;
  --secondaryfont: "Inter", sans-serif;
  --thirdfont: "Roboto", sans-serif;
  --fourthfont: "Montserrat", sans-serif;
  --fifthfont: "Open Sans", sans-serif;
  --sixthfont: "Poppins", sans-serif;
}

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

.expand {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.sidebar-container {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 280px;
  background: var(--plainclr);
  box-shadow: var(--shadowthree);
  transition: all 0.3s ease;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transform: translateX(0);
}
.sidebar-container.open {
  transform: translateX(0);
}

.sidebar-header {
  padding: 20px 15px;
  background: var(--plainclr);
  color: var(--darkclr);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--main-border);
  border-right: 1px solid var(--main-border);
  height: 80px;
  flex-shrink: 0;
}
.sidebar-header h3 {
  margin: 0;
  font-weight: 600;
  font-size: 1.5rem;
}

.brand-logo {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}
.brand-logo .logo-sm {
  display: none;
}
.brand-logo .logo-lg {
  display: block;
}

.sidebar-menu {
  flex: 1;
  padding: 15px 0;
  overflow-y: auto;
  overflow-x: hidden;
}
.sidebar-menu::-webkit-scrollbar {
  width: 4px;
}
.sidebar-menu::-webkit-scrollbar-track {
  background: var(--lightbg);
}
.sidebar-menu::-webkit-scrollbar-thumb {
  background: var(--themeeighthclr);
  border-radius: 2px;
}

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

.menu-link {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  color: var(--themesecondaryclr);
  text-decoration: none;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
  justify-content: flex-start;
  width: 100%;
}
.menu-link:hover, .menu-link.active {
  background-color: var(--link-hover-bg-clr);
  color: var(--themeprimaryclr);
  border-left-color: var(--themeprimaryclr);
}
.menu-link i {
  width: 24px;
  margin-right: 12px;
  font-size: 18px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.menu-link:hover i, .menu-link.active i {
  color: var(--themeprimaryclr);
}

.menu-text {
  flex: 1;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.submenu-toggle {
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.menu-link.active .submenu-toggle {
  transform: rotate(90deg);
}

.submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background-color: var(--lightbg);
}
.submenu.open {
  max-height: 500px;
}

.submenu-item {
  padding-left: 56px;
}

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

.menu-badge {
  padding: 3px 8px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  margin-left: 8px;
  flex-shrink: 0;
}

.badge-primary {
  background-color: var(--themeprimaryclr);
  color: var(--plainclr);
}

.badge-success {
  background-color: var(--themethirdclr);
  color: var(--plainclr);
}

.sidebar-footer {
  padding: 15px;
  border-top: 1px solid var(--main-border);
  border-right: 1px solid var(--main-border);
  background: var(--plainclr);
  flex-shrink: 0;
}

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

.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;
  margin-right: 10px;
  flex-shrink: 0;
}

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

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

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

.mode-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--lightbg);
  padding: 8px 15px;
  border-radius: 20px;
  cursor: pointer;
}

.mode-text {
  font-size: 0.9rem;
  color: var(--themesecondaryclr);
  white-space: nowrap;
}

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

.dark-mode .toggle-switch {
  background-color: var(--themeprimaryclr);
}
.dark-mode .toggle-switch:before {
  transform: translateX(20px);
}
.dark-mode .sidebar-container {
  background-color: var(--dark-menu-bg-color);
}
.dark-mode .sidebar-header {
  background-color: var(--dark-menu-bg-color);
  color: var(--dark-text-color);
  border-bottom-color: var(--dark-section-color);
  border-right-color: var(--dark-section-color);
}
.dark-mode .menu-link {
  color: var(--dark-text-color);
}
.dark-mode .menu-link:hover, .dark-mode .menu-link.active {
  background-color: var(--dark-section-color);
  color: var(--plainclr);
}
.dark-mode .submenu {
  background-color: var(--dark-section-color);
}
.dark-mode .submenu-link {
  color: var(--dark-text-color);
}
.dark-mode .submenu-link:hover, .dark-mode .submenu-link.active {
  color: var(--plainclr);
  background-color: var(--dark-menu-icon-color);
}
.dark-mode .sidebar-footer {
  background-color: var(--dark-menu-bg-color);
  border-top-color: var(--dark-section-color);
  border-right-color: var(--dark-section-color);
}
.dark-mode .user-name {
  color: var(--dark-text-color);
}
.dark-mode .mode-toggle {
  background-color: var(--dark-section-color);
}

.sidebar-toggleOne {
  background: var(--gradientone);
  color: var(--plainclr);
  width: 40px;
  height: 40px;
  border-radius: 5px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  flex-shrink: 0;
}

.miniview-toggleOne {
  background: var(--gradientone);
  color: var(--plainclr);
  width: 40px;
  height: 40px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  flex-shrink: 0;
}

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

.footer {
  position: fixed;
  bottom: 0;
  left: 280px;
  right: 0;
  z-index: 1025;
  background: var(--plainclr);
  color: var(--themesixthclr);
  border-top: 1px solid var(--main-border);
  padding: 0 30px;
  min-height: 80px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.main-content {
  position: fixed;
  top: 80px;
  left: 280px;
  right: 0;
  bottom: 80px;
  transition: all 0.3s ease;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: #ebeefa;
  width: calc(100% - 280px);
  padding: 20px;
}
.main-content .main-card {
  border: 1px solid rgba(0, 0, 0, 0.176);
  padding: 1.2rem;
  background-color: var(--plainclr);
  border-radius: 6px;
  position: relative;
  color: var(--glass-text);
  height: auto;
  min-height: 100%;
}

@media (min-width: 993px) {
  .miniview .header {
    left: 100px;
  }
  .miniview .footer {
    left: 100px;
  }
  .miniview .main-content {
    left: 100px;
    width: calc(100% - 100px);
  }
  .miniview .sidebar-container {
    width: 100px;
  }
  .miniview .menu-text,
  .miniview .submenu-toggle,
  .miniview .menu-badge,
  .miniview .user-details,
  .miniview .mode-text {
    display: none;
  }
  .miniview .brand-logo .logo-sm {
    display: block;
  }
  .miniview .brand-logo .logo-lg {
    display: none;
  }
  .miniview .menu-link {
    justify-content: center;
    padding: 12px 15px;
  }
  .miniview .menu-link i {
    margin-right: 0;
  }
  .miniview .submenu-item {
    padding-left: 15px;
  }
  .miniview .sidebar-menu {
    overflow: visible;
  }
}
@media (max-width: 992px) {
  .sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999;
    background: rgba(0, 0, 0, 0.2);
    display: none;
  }
  .sidebar-overlay.show {
    display: block;
  }
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1001;
  }
  .footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1001;
  }
  .main-content {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 80px;
    margin-left: 0;
    padding: 20px;
    overflow-y: auto;
    width: 100%;
  }
  .sidebar-container {
    transform: translateX(-100%);
    width: 280px;
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  .sidebar-container.open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
  .sidebar-toggleOne {
    display: flex;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1002;
  }
  .miniview-toggleOne {
    display: none;
  }
}
.layout-container {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.content-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

html {
  height: 100%;
  overflow: hidden;
}

body {
  height: 100%;
  overflow: auto;
}

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