/* [project]/src/app/dashboard/dashboard.module.css [app-client] (css) */
.dashboard-module__XABe8G__container {
  background-color: var(--background);
  flex-direction: row;
  height: 100vh;
  display: flex;
  position: relative;
  overflow-x: hidden;
}

.dashboard-module__XABe8G__sidebar {
  z-index: 100;
  background: #fff;
  width: 270px;
  min-width: 270px;
  height: 100vh;
  transition: all .3s ease-in-out;
  position: relative;
  overflow: hidden;
  box-shadow: 2px 0 8px #0000001a;
}

.dashboard-module__XABe8G__sidebar.dashboard-module__XABe8G__collapsed {
  width: 0;
  min-width: 0;
  position: absolute;
  left: 0;
  overflow: hidden;
  transform: translateX(-100%);
}

.dashboard-module__XABe8G__main {
  background: linear-gradient(135deg, var(--secondary) 0%, #f4f2ffcc 25%, #e6e1fae6 50%, #f5f0ffd9 75%, var(--secondary) 100%);
  flex: 1;
  margin-left: 0;
  transition: all .3s ease-in-out;
  overflow: hidden auto;
}

.dashboard-module__XABe8G__main.dashboard-module__XABe8G__expanded {
  width: 70%;
  margin-left: 0;
}

.dashboard-module__XABe8G__main.dashboard-module__XABe8G__withSecondSidebar {
  width: calc(100% - 520px);
}

.dashboard-module__XABe8G__secondSidebar {
  z-index: 99;
  background: none;
  width: 250px;
  min-width: 250px;
  height: 100vh;
  transition: all .3s ease-in-out;
  animation: .3s ease-out dashboard-module__XABe8G__slideInRight;
  position: relative;
  overflow-y: auto;
}

.dashboard-module__XABe8G__secondSidebarCollapsed {
  width: 0;
  min-width: 0;
  position: absolute;
  left: 270px;
  overflow: hidden;
  transform: translateX(-100%);
}

@keyframes dashboard-module__XABe8G__slideInRight {
  from {
    opacity: 0;
    transform: translateX(100%);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* [project]/src/components/common/sidebar/sidebar.module.css [app-client] (css) */
.sidebar-module__qlM12W__sidebar {
  background: linear-gradient(135deg, var(--primary) 0%, #1a1a2e 100%);
  height: 100%;
  color: var(--white);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid #ffffff1a;
  border-radius: 0 40px 40px 0;
  flex-direction: column;
  width: 100%;
  display: flex;
  overflow: hidden;
  box-shadow: 0 8px 32px #0000001a;
}

.sidebar-module__qlM12W__sidebar_logo {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background: #ffffff0d;
  border-bottom: 1px solid #ffffff26;
  justify-content: center;
  align-items: center;
  height: 90px;
  margin-bottom: 10px;
  padding: 20px;
  display: flex;
}

.sidebar-module__qlM12W__sidebar_logo_img {
  object-fit: contain;
  width: 200px;
  height: auto;
}

.sidebar-module__qlM12W__sidebar_image {
  background: none;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
  padding: 10px 20px;
  display: flex;
}

.sidebar-module__qlM12W__sidebar_image_img {
  object-fit: cover;
  border-radius: 15px;
  width: 100%;
  height: 300px;
}

.sidebar-module__qlM12W__sidebar_educators, .sidebar-module__qlM12W__sidebar_students {
  flex-direction: column;
  gap: 5px;
  margin-top: 20px;
  padding: 0 10px;
  display: flex;
}

.sidebar-module__qlM12W__sidebar_link {
  cursor: pointer;
  color: var(--white);
  font-size: var(--paragraph-font-size);
  border-radius: 10px;
  align-items: center;
  gap: 14px;
  margin: 2px 8px;
  padding: 14px 18px;
  font-weight: 400;
  text-decoration: none;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  position: relative;
  overflow: hidden;
}

.sidebar-module__qlM12W__sidebar_link:hover {
  background: linear-gradient(135deg, #ffffff26 0%, #ffffff14 100%);
  transform: translateX(4px);
  box-shadow: 0 4px 12px #00000026;
}

.sidebar-module__qlM12W__active {
  cursor: pointer;
  color: var(--primary);
  font-size: var(--paragraph-font-size);
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  border-radius: 10px;
  align-items: center;
  gap: 14px;
  margin: 2px 8px;
  padding: 14px 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px #0003;
}

.sidebar-module__qlM12W__sidebar_link .sidebar-module__qlM12W__icon {
  flex-shrink: 0;
}

.sidebar-module__qlM12W__link_text {
  flex-grow: 1;
}

.sidebar-module__qlM12W__sidebar_link[aria-current="page"] {
  background-color: var(--white);
  color: var(--primary);
  font-weight: 500;
}

.sidebar-module__qlM12W__sidebar_submenu {
  flex-direction: column;
  gap: 5px;
  margin-top: 5px;
  padding-left: 20px;
  display: flex;
}

.sidebar-module__qlM12W__sidebar_sublink {
  color: #ffffffd9;
  border-radius: 8px;
  align-items: center;
  gap: 10px;
  margin: 1px 8px;
  padding: 10px 18px 10px 35px;
  font-size: 13px;
  text-decoration: none;
  transition: all .3s;
  display: flex;
}

.sidebar-module__qlM12W__sidebar_sublink:hover {
  color: var(--white);
  background: linear-gradient(135deg, #ffffff1f 0%, #ffffff0f 100%);
  transform: translateX(2px);
}

.sidebar-module__qlM12W__collapsible_header {
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.sidebar-module__qlM12W__collapsible_content {
  transition: max-height .2s ease-out;
  overflow: hidden;
}

.sidebar-module__qlM12W__sidebar_footer {
  margin-top: auto;
  padding: 15px;
}

.sidebar-module__qlM12W__sidebar_logout {
  width: 100%;
  color: var(--white);
  font-size: var(--paragraph-font-size);
  cursor: pointer;
  background: linear-gradient(135deg, #ff43361a 0%, #ff43360d 100%);
  border: 1px solid #ff433633;
  border-radius: 10px;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  font-weight: 500;
  text-decoration: none;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  display: flex;
}

.sidebar-module__qlM12W__sidebar_logout:hover {
  background: linear-gradient(135deg, #ff433633 0%, #ff43361a 100%);
  border-color: #ff433666;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px #ff43364d;
}

.sidebar-module__qlM12W__sidebar_logout .sidebar-module__qlM12W__icon {
  flex-shrink: 0;
}

/* [project]/src/components/common/sidebar/StudentPanelSidebar.module.css [app-client] (css) */
.StudentPanelSidebar-module__hWzQ-q__studentPanelSidebar {
  color: #1e293b;
  background: linear-gradient(#fff 0%, #f8fafc 100%);
  border: 1px solid #e2e8f0cc;
  border-radius: 0 32px 32px 0;
  flex-direction: column;
  width: 100%;
  height: 100%;
  animation: .5s cubic-bezier(.23, 1, .32, 1) StudentPanelSidebar-module__hWzQ-q__slideIn;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px #00000014, 0 2px 10px #0000000a, inset 0 1px #fffc;
}

@keyframes StudentPanelSidebar-module__hWzQ-q__slideIn {
  from {
    opacity: 0;
    filter: blur(8px);
    transform: translateX(100%);
  }

  to {
    opacity: 1;
    filter: blur();
    transform: translateX(0);
  }
}

.StudentPanelSidebar-module__hWzQ-q__sidebarHeader {
  background: linear-gradient(135deg, #6366f10d 0%, #8b5cf608 100%);
  border-bottom: 1px solid #e2e8f099;
  justify-content: center;
  align-items: center;
  height: 90px;
  margin-bottom: 20px;
  padding: 28px 24px;
  display: flex;
  position: relative;
}

.StudentPanelSidebar-module__hWzQ-q__sidebarHeader:after {
  content: "";
  background: linear-gradient(90deg, #0000, #6366f133, #0000);
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 24px;
  right: 24px;
}

.StudentPanelSidebar-module__hWzQ-q__sidebarHeader h3 {
  text-align: center;
  color: #1e293b;
  letter-spacing: -.025em;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  flex: 1;
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}

.StudentPanelSidebar-module__hWzQ-q__closeButton {
  cursor: pointer;
  color: #64748b;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background: #eff1f6cc;
  border: 1px solid #e2e8f099;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  padding: 8px;
  transition: all .3s cubic-bezier(.23, 1, .32, 1);
  display: flex;
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  box-shadow: 0 2px 8px #0000000a;
}

.StudentPanelSidebar-module__hWzQ-q__closeButton:hover {
  color: #ef4444;
  background: #ef44441a;
  border-color: #ef444433;
  transform: translateY(-50%)scale(1.05);
  box-shadow: 0 4px 12px #ef444426;
}

.StudentPanelSidebar-module__hWzQ-q__closeButton:active {
  transform: translateY(-50%)scale(.95);
}

.StudentPanelSidebar-module__hWzQ-q__sidebarContent {
  scrollbar-width: thin;
  scrollbar-color: #94a3b84d transparent;
  flex: 1;
  padding: 0 20px 20px;
  overflow-y: auto;
}

.StudentPanelSidebar-module__hWzQ-q__sidebarContent::-webkit-scrollbar {
  width: 4px;
}

.StudentPanelSidebar-module__hWzQ-q__sidebarContent::-webkit-scrollbar-track {
  background: none;
}

.StudentPanelSidebar-module__hWzQ-q__sidebarContent::-webkit-scrollbar-thumb {
  background: #94a3b84d;
  border-radius: 2px;
}

.StudentPanelSidebar-module__hWzQ-q__sidebarContent::-webkit-scrollbar-thumb:hover {
  background: #94a3b880;
}

.StudentPanelSidebar-module__hWzQ-q__menuItem {
  margin-bottom: 12px;
  position: relative;
}

.StudentPanelSidebar-module__hWzQ-q__sidebarLink {
  cursor: pointer;
  color: #475569;
  background: #f8fafccc;
  border: 1px solid #e2e8f099;
  border-radius: 20px;
  align-items: center;
  gap: 16px;
  margin: 0;
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all .3s cubic-bezier(.23, 1, .32, 1);
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px #00000005;
}

.StudentPanelSidebar-module__hWzQ-q__sidebarLink:before {
  content: "";
  background: linear-gradient(90deg, #0000, #6366f11a, #0000);
  width: 100%;
  height: 100%;
  transition: left .5s;
  position: absolute;
  top: 0;
  left: -100%;
}

.StudentPanelSidebar-module__hWzQ-q__sidebarLink:hover:before {
  left: 100%;
}

.StudentPanelSidebar-module__hWzQ-q__sidebarLink:hover {
  color: #6366f1;
  background: linear-gradient(135deg, #fff 0%, #f1f5f9 100%);
  border-color: #6366f133;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px #6366f126, 0 4px 12px #0000000a;
}

.StudentPanelSidebar-module__hWzQ-q__active {
  cursor: pointer;
  color: #fff;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
  border: 1px solid #fff3;
  border-radius: 20px;
  align-items: center;
  gap: 16px;
  margin: 0;
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s cubic-bezier(.23, 1, .32, 1);
  display: flex;
  position: relative;
  overflow: hidden;
  transform: translateY(-1px);
  box-shadow: 0 8px 30px #6366f14d, 0 4px 15px #0000001a, inset 0 1px #fff3;
}

.StudentPanelSidebar-module__hWzQ-q__active:before {
  content: "";
  background: linear-gradient(135deg, #ffffff26 0%, #0000 100%);
  position: absolute;
  inset: 0;
}

.StudentPanelSidebar-module__hWzQ-q__active:after {
  content: "";
  background: #fffc;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 8px;
  right: 8px;
  box-shadow: 0 0 10px #ffffff80;
}

.StudentPanelSidebar-module__hWzQ-q__activeSub {
  color: #6366f1;
  background: linear-gradient(135deg, #6366f11a 0%, #8b5cf614 100%);
  border: 1px solid #6366f126;
  border-radius: 16px;
  align-items: center;
  margin: 4px 0;
  padding: 14px 20px 14px 44px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s cubic-bezier(.23, 1, .32, 1);
  display: flex;
  position: relative;
  box-shadow: 0 2px 8px #6366f11a;
}

.StudentPanelSidebar-module__hWzQ-q__activeSub:before {
  content: "";
  background: #6366f1;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  box-shadow: 0 0 12px #6366f166;
}

.StudentPanelSidebar-module__hWzQ-q__sidebarSublink {
  color: #64748b;
  background: #f8fafc99;
  border: 1px solid #e2e8f066;
  border-radius: 16px;
  align-items: center;
  margin: 4px 0;
  padding: 14px 20px 14px 44px;
  font-size: 14px;
  text-decoration: none;
  transition: all .3s cubic-bezier(.23, 1, .32, 1);
  display: flex;
  position: relative;
}

.StudentPanelSidebar-module__hWzQ-q__sidebarSublink:before {
  content: "";
  background: #94a3b8;
  border-radius: 50%;
  width: 6px;
  height: 6px;
  transition: all .3s;
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}

.StudentPanelSidebar-module__hWzQ-q__sidebarSublink:hover {
  color: #6366f1;
  background: linear-gradient(135deg, #6366f114 0%, #8b5cf60f 100%);
  border-color: #6366f133;
  transform: translateX(4px);
  box-shadow: 0 4px 12px #6366f114;
}

.StudentPanelSidebar-module__hWzQ-q__sidebarSublink:hover:before {
  background: #6366f1;
  width: 8px;
  height: 8px;
  box-shadow: 0 0 8px #6366f166;
}

.StudentPanelSidebar-module__hWzQ-q__submenuContainer {
  flex-direction: column;
  gap: 4px;
  margin-top: 8px;
  padding-left: 0;
  display: flex;
}

.StudentPanelSidebar-module__hWzQ-q__icon {
  filter: drop-shadow(0 1px 2px #0000001a);
  flex-shrink: 0;
  transition: all .3s;
}

.StudentPanelSidebar-module__hWzQ-q__sidebarLink:hover .StudentPanelSidebar-module__hWzQ-q__icon {
  filter: drop-shadow(0 2px 4px #6366f14d);
  transform: scale(1.05);
}

.StudentPanelSidebar-module__hWzQ-q__active .StudentPanelSidebar-module__hWzQ-q__icon {
  filter: drop-shadow(0 2px 4px #ffffff4d);
  transform: scale(1.05);
}

.StudentPanelSidebar-module__hWzQ-q__linkText {
  letter-spacing: -.025em;
  flex-grow: 1;
  font-weight: 500;
  line-height: 1.3;
}

.StudentPanelSidebar-module__hWzQ-q__linkContent {
  flex-direction: column;
  flex-grow: 1;
  align-items: flex-start;
  gap: 4px;
  display: flex;
}

.StudentPanelSidebar-module__hWzQ-q__linkDescription {
  color: #94a3b8;
  letter-spacing: .025em;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
}

.StudentPanelSidebar-module__hWzQ-q__active .StudentPanelSidebar-module__hWzQ-q__linkDescription {
  color: #ffffffe6;
}

.StudentPanelSidebar-module__hWzQ-q__subIcon {
  filter: drop-shadow(0 1px 2px #0000001a);
  flex-shrink: 0;
  margin-right: 12px;
}

.StudentPanelSidebar-module__hWzQ-q__arrow {
  opacity: .6;
  color: #94a3b8;
  margin-left: auto;
  font-size: 16px;
  transition: all .3s;
}

.StudentPanelSidebar-module__hWzQ-q__sidebarLink:hover .StudentPanelSidebar-module__hWzQ-q__arrow {
  opacity: 1;
  color: #6366f1;
  transform: translateX(2px);
}

/* [project]/src/components/common/navbar/Navbar.module.css [app-client] (css) */
.Navbar-module__L3qtea__navbar {
  background-color: var(--white);
  z-index: 1000;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 86%;
  padding: 10px 50px;
  display: flex;
  position: fixed;
}

.Navbar-module__L3qtea__navbar.Navbar-module__L3qtea__collapsed {
  width: 100%;
}

.Navbar-module__L3qtea__nav_left {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  display: flex;
}

.Navbar-module__L3qtea__panel_wrapper {
  align-items: center;
  display: flex;
  position: relative;
}

.Navbar-module__L3qtea__nav_left_panel {
  cursor: pointer;
  width: 35px;
  height: 35px;
  color: var(--foreground);
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  padding: 8px;
  transition: all .3s ease-in-out;
  display: flex;
}

.Navbar-module__L3qtea__nav_left_panel:hover {
  color: var(--primary);
  background-color: #6b21821a;
  transform: scale(1.1);
}

.Navbar-module__L3qtea__nav_left_panel:active {
  transform: scale(.95);
}

.Navbar-module__L3qtea__panel_tooltip {
  background-color: var(--foreground);
  color: var(--white);
  font-size: calc(var(--paragraph-font-size)  - 2px);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  pointer-events: none;
  border-radius: 6px;
  padding: 6px 12px;
  transition: all .3s;
  position: absolute;
  top: 50%;
  left: 50px;
  transform: translateY(-50%);
}

.Navbar-module__L3qtea__panel_wrapper:hover .Navbar-module__L3qtea__panel_tooltip {
  opacity: 1;
  visibility: visible;
  left: 55px;
}

.Navbar-module__L3qtea__panel_tooltip:before {
  content: "";
  border: 6px solid #0000;
  border-right-color: var(--foreground);
  margin-right: -1px;
  position: absolute;
  top: 50%;
  right: 100%;
  transform: translateY(-50%);
}

.Navbar-module__L3qtea__nav_left_search {
  background-color: var(--gray);
  border-radius: 15px;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 500px;
  height: 40px;
  padding: 15px;
  display: flex;
  overflow: hidden;
}

.Navbar-module__L3qtea__nav_left_search_icon {
  cursor: pointer;
  width: 25px;
  height: 25px;
  color: var(--foreground);
}

.Navbar-module__L3qtea__nav_left_search_input {
  background: none;
  border: none;
  border-radius: 15px;
  outline: none;
  width: 450px;
  height: 40px;
  padding: 15px;
}

.Navbar-module__L3qtea__nav_right {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  display: flex;
}

.Navbar-module__L3qtea__nav_right_bell {
  cursor: pointer;
  width: 25px;
  height: 25px;
  color: var(--foreground);
}

.Navbar-module__L3qtea__nav_right_user {
  cursor: pointer;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.Navbar-module__L3qtea__nav_right_user_name {
  text-align: center;
  width: 50px;
  height: 50px;
  font-size: var(--heading-font-size);
  background-color: var(--primary);
  color: var(--white);
  border-radius: 15px;
  justify-content: center;
  align-items: center;
  padding: 5px 10px;
  display: flex;
}

@media (max-width: 480px) {
  .Navbar-module__L3qtea__navbar {
    gap: 10px;
    width: 100%;
    padding: 5px;
  }

  .Navbar-module__L3qtea__nav_left_search {
    width: 150px;
  }

  .Navbar-module__L3qtea__nav_left_search_input {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .Navbar-module__L3qtea__navbar {
    gap: 10px;
    padding: 5px;
  }

  .Navbar-module__L3qtea__nav_left_search, .Navbar-module__L3qtea__nav_left_search_input {
    width: 300px;
  }
}

/*# sourceMappingURL=src_2f8059e2._.css.map*/