.main-menu{
  position: fixed;
  top: 0;
  left: 0;
  width: var(--menu-width);
  height: 100vh;

  display: flex;
  flex-direction: column;

  background: #121212;
  padding: 12px 8px;

  box-shadow: 2px 0 8px rgba(0,0,0,0.4);
  z-index: 1000;
}

.menu-item{
  position: relative;
  overflow: hidden;

  padding: 10px 12px;
  margin-bottom: 6px;
  border-radius: 6px;

  text-decoration: none;
  color: #ddd;
  background: #1c1c1c;

  transition: background .15s, color .15s, border-color .15s;
}

.menu-item:hover{
  background: #2a2a2a;
  color: #fff;
}

.menu-item.active{
  background: linear-gradient(180deg, rgba(255,210,125,.12), rgba(0,0,0,.10));
  border: 1px solid rgba(255,210,125,.18);
}

.menu-item.active::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #ffd27d, #c0392b);
}

.menu-item.logout{
  margin-top: auto;
  background: #2a1515;
}

a.logout{
  color: #aaa;
  font-size: 12px;
  float: right;
}
