.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-top: 1px solid #333;
  z-index: 1000;
  background-color: #333;
  padding: 6px 0;
}

.bottom-nav .nav-item {
  color: #aaa;
  text-align: center;
  text-decoration: none;
  font-size: 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.bottom-nav .nav-item i {
  font-size: 20px;
  margin-bottom: 4px;
}

.bottom-nav .nav-item span {
  font-size: 11px;
  line-height: 1;
}

.bottom-nav .nav-item.active,
.bottom-nav .nav-item:hover {
  color: #fff;
}

.bottom-nav .add-button {
  color: #28a745;
  text-align: center;
  text-decoration: none;
  font-size: 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.bottom-nav .add-button i {
  font-size: 20px;
  margin-bottom: 4px;
  color: #28a745;
}

.bottom-nav .add-button span {
  font-size: 11px;
  line-height: 1;
  color: #28a745;
}

.bottom-nav .add-button:hover {
  color: #34c759;
}
