/* .sidebar {
      width: 270px;
      height: 100vh;
      background: #21232b;
      position: fixed;
      top: 0;
      left: 0;
      padding-bottom: 24px;
      box-shadow: 2px 0 16px rgba(0, 0, 0, 0.20);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .sidebar .profile-block {
      width: 100%;
      display: flex;
      align-items: center;
      padding: 16px 22px 20px 24px;
      border-top: 1px solid #272b38;
      background: #191c25;
      position: absolute;
      bottom: 0;
      left: 0;
      box-sizing: border-box;
      gap: 12px;
    } */

.sidebar {
  width: 270px;
  height: 100vh;
  background: #21232b;
  box-shadow: 2px 0 16px rgba(0, 0, 0, 0.20);
  position: fixed;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 14px;
  z-index: 100;
}
.logo {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
  margin-bottom: 10px;
  margin-left: 30px;
  margin-top: 30px;
}
.brand-accent {
  color: #fed5ce;
  font-weight: 900;
}
.nav-items {
  margin-top: 34px;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-left: 0;
  margin-right: 12px;
  margin-left: 12px;
}
.nav-items a {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #bfc3d0;
  padding: 13px 20px 13px 10px;
  border-radius: 8px;
  margin-bottom: 3px;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.nav-items a.active,
.nav-items a:hover {
  background: #282c36;
  color: #fed5ce;
}
.nav-items a .material-icons {
  font-size: 22px;
  margin-right: 18px;
}

.sidebar-footer {
  padding: 0 24px 0 24px;
  margin-bottom: 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.sidebar-user-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}
.sidebar-user-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #262a38;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fed5ce;
}
.sidebar-user-details {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.sidebar-user-name {
  font-size: 15px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 19px;
}
.sidebar-user-role {
  font-size: 12px;
  color: #fed5ce;
  font-weight: 600;
  text-transform: capitalize;
}
.sidebar-signout-btn {
  background: #fd8484;
  color: #fff;
  font-size: 16px;
  padding: 8px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  margin-top: 0;
  transition: background 0.2s;
}
.sidebar-signout-btn:hover {
  background: #ff5252;
}
.nav-item-header {
    cursor: pointer;
    border-radius: 8px;
    transition: background .2s;
}
.nav-item-header:hover {
    background: #282c36;
}
.nav-item-header a {
    margin-bottom: 0;
}
.nav-item-header a:hover {
    background: transparent;
    color: #fed5ce;
}
.nav-item-header.open {
    background: #282c36;
}
.nav-item-header.open a {
    color: #fed5ce;
}
.nav-item-header .arrow {
    margin-left: auto;
    transition: transform 0.2s;
}
.nav-item-header.open .arrow {
    transform: rotate(90deg);
}
.leads-submenu {
    display: none;
    padding-left: 28px;
    margin: 0 12px;
}
.leads-submenu a {
    font-size: 15px;
    padding: 10px 16px;
}
.nav-item-header.open + .leads-submenu {
    display: block;
}