/* ICON */
#sidebar-toggle {
  position: fixed;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: #0b3746;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  z-index: 10001;
  transition: transform 0.3s ease;
}

#sidebar-toggle:hover {
  transform: translateY(-50%) scale(1.1);
}

#sidebar-toggle img {
  transition: transform 0.3s ease;
}

#sidebar-toggle:hover img {
  transform: scale(1.1);
}

/* OVERLAY */
#sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 10000;
}

/* SIDEBAR */
#sidebar-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  max-width: 90%;
  height: 100vh;
  background: #ffffff;
  padding: 100px 20px 20px 20px;
  overflow-y: auto;
  box-shadow: 4px 0 20px rgba(0,0,0,0.15);
  transform: translateX(-100%);
  transition: 0.35s ease;
  z-index: 10002;
  font-family: 'Open Sans', sans-serif;
}

/* ACTIVE */
#sidebar-menu.active {
  transform: translateX(0);
}

#sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* HEADER STYLE */
.sidebar-header {
  margin-bottom: 24px;
}

.sidebar-title {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 45px;
  line-height: 53px;
  letter-spacing: 0%;
  color: #166987;
  margin-bottom: 20px;
  padding: 0;
  display: block;
}

.sidebar-subtitle {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 21px;
  letter-spacing: 0%;
  color: #0B3746;
  margin: 0;
  padding: 0;
  display: block;
}

/* NAVIGATION */
.sidebar-nav {
  margin: 0;
  padding: 0;
}

.sidebar-menu-item {
  margin: 0;
  padding: 0;
}

/* PARENT MENU LINKS */
.sidebar-menu-parent {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  line-height: 21px;
  letter-spacing: 0%;
  color: #868A99;
  text-decoration: none;
  display: inline-block;
  padding: 12px 0;
  cursor: pointer;
  transition: color 0.3s ease;
  position: relative;
}

.sidebar-menu-parent::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #166987;
  transition: width 0.3s ease;
}

.sidebar-menu-parent:hover,
.sidebar-menu-parent.active {
  color: #166987;
}

.sidebar-menu-parent:hover::after,
.sidebar-menu-parent.active::after {
  width: 100%;
}

/* CHILD MENU LINKS */
.sidebar-menu-children {
  list-style: none;
  margin: 0;
  padding: 0;
  padding-left: 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.sidebar-menu-item.expanded .sidebar-menu-children {
  max-height: 500px;
}

.sidebar-menu-children li {
  margin: 0;
  padding: 0;
}

.sidebar-menu-child {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 29px;
  letter-spacing: 0%;
  color: #868A99;
  text-decoration: none;
  display: inline-block;
  padding: 4px 0;
  transition: color 0.3s ease;
  position: relative;
}

.sidebar-menu-child::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: #166987;
  transition: width 0.3s ease;
}

.sidebar-menu-child:hover,
.sidebar-menu-child.active {
  color: #166987;
  text-decoration: none;
}

.sidebar-menu-child:hover::after,
.sidebar-menu-child.active::after {
  width: 100%;
}

/* SEPARATOR */
.sidebar-separator {
  height: 1px;
  background-color: #E8C986;
  margin: 0;
  padding: 0;
}

/* Hide separator for last item */
.sidebar-menu-item:last-child .sidebar-separator {
  display: none;
}
