/* Bottom Navigation Styles */

.bottom-navigation {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70px;
  background-color: #fff;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  border-top: 1px solid #e0e0e0;
}

.bottom-navigation-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.bottom-navigation-list .nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #666;
  transition: all 0.3s ease;
  padding: 8px 0;
}

.bottom-navigation-list .nav-item i {
  font-size: 24px;
  width: 24px;
  height: 24px;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bottom-navigation-list .nav-item span {
  font-size: 12px;
  font-weight: 500;
}

.bottom-navigation-list .nav-item:hover {
  color: #ff8c42;
}

.bottom-navigation-list .nav-item.active {
  color: #ff8c42;
}

.bottom-navigation-list .nav-item.active i {
  transform: scale(1.1);
}
