/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 200px;
  height: 100%;
  border-right: 1px solid #D9D9D9;
  color: #000000;
  background-color: #ffff;
  transition: display 0.5s ease;
  /* transform: translateX(0); */
  padding-top: 16px;
}

.navi {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.navi .item {
  text-decoration: none;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  padding: 10px 10px;
  border-radius: 8px;
  transition: color 0.3s ease, background-color 0.3s ease;
  color:#5E5E5E;

  width: 80%;
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 15px;
}

.navi .item svg {
  fill: #5E5E5E;
}

.navi .item.active {
  color: #49505E;
  background-color: #EDF3FF;
}
.navi .item.active svg {
  fill: #49505E;
}

/* User Info */
.about-user {
  position: absolute;
  display: flex;
  align-items: center;
  bottom: 10px;
  left: 50%;
  transform: translate(-50%, -50%);
}

.user-number {
  width: 40px;
  height: 40px;
  background-color: #49505E;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  font-weight: 500;
  font-size: 16px;
  margin-right: 10px;
}

.user-info h3 {
  font-size: 16px;
  font-weight: 700;
}

.user-info h4 {
  color: #A6A6A6;
  font-size: 12px;
}


.content {
  margin-left: 180px;
  padding: 16px 20px 20px 36px;
  text-align: center;
  transition: margin-left 0.5s ease;
}

.content .stats {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 0px 0px 32px;
}

.content .stats .stat-box { 
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  padding: 30px 32px;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0px 4px 14px 0px rgba(0,0,0,0.1);
}

.content .stats .stat-box p {
  color: #000000;
  font-size: 14px;
}

.content .stats .stat-box span {
  color: #49505E;
  font-size: 35px;
  font-weight: 600;
}

.content .stats .stat-box .top {
  margin-bottom: 16px;
  display: flex;
}


.content .stats .stat-box .top h4 {
  display: inline;
  font-size: 16px;
  font-weight: 500;
  margin-left: 4px;
}

.content .stats .stat-box h5 {
  margin-top: 16px;
}


.content .stats .stat-box .top i {
  color: #ffffff;
  background-color: #49505E;
  padding: 8px;
  border-radius: 8px;
}



.content .stats .stat-box .bottom h5 {
  display: inline-block;
  margin-right: 32px;
  margin-top: 16px;
  cursor: pointer;
  transition: scale ease 0.3s;
}

.content .stats .stat-box .bottom h5:hover {
  scale: 1.05;
}





.nav-bottom {
  z-index: 1000;
  display: none; 
  flex-direction: row;
  align-items: center; 
  justify-content: center;
  position: static; 
  top: 0;
  left: 0;
  right: 0;
  padding: 8px 0px;

  border-top: 1px solid #D9D9D9;

  background-color: rgb(255, 255, 255); 
  color: #565656; 
}

.nav-bottom a {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: auto;
  gap: 3px;
  text-align: center;
  text-decoration: none;
  color: #565656; 
  font-size: 8px;
  font-weight: 600;
}


.nav-bottom svg {
  width: 12px;
  height: 12px;
}
/* Media queries */
@media only screen and (max-width: 768px) {
  .sidebar {
    display: none;
  }
  .nav-bottom {
    display: flex;
  }
  .content {
    margin-left: 0px;
  }
  .content .stats {
    gap: 7px;
    padding: 16px;
  }
  
  .content .stats .stat-box { 
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    padding: 16px 16px;
    border-radius: 8px;
    box-shadow: 0px 4px 14px 0px rgba(0,0,0,0.1);
  }
  
  .content .stats .stat-box p {
    color: #000000;
    font-size: 10px;
  }
  
  .content .stats .stat-box span {
    color: #49505E;
    font-size: 16px;
    font-weight: 600;
  }





.content .stats .stat-box .top {
  margin-bottom: 12px;
}


.content .stats .stat-box .top h4 {
  display: inline;
  font-size: 18px;
  font-weight: 500;
  margin-left: 8px;
}

.content .stats .stat-box h5 {
  margin-top: 16px;
}


.content .stats .stat-box .top i {
  color: #ffffff;
  background-color: #49505E;
  padding: 8px;
  border-radius: 8px;
  font-size: 8px;
}



.content .stats .stat-box .bottom h5 {
  display: inline-block;
  margin-right: 32px;
  margin-top: 16px;
  cursor: pointer;
  transition: scale ease 0.3s;
  font-size: 10px;
}

.content .stats .stat-box .bottom h5:hover {
  scale: 1.05;
}

.stats .stat-box h5 {
  font-size: 10px;
}


}


@media only screen and (min-width: 769px) {

}
