/* Navbar Styles */
/* Bottom Navigation Bar */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: #000000;
  font-family: Luckiest;
  z-index: 999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  padding: 10px 0px 20px;
}

.bottom-nav .nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  text-decoration: none;
  flex: 1;
}

.bottom-nav .nav-item i {
  font-size: 24px;
}

.bottom-nav .nav-item.active {
  color: #4CAF50; /* Active color */
}

.bottom-nav .nav-item span {
  font-size: 12px;
  margin-top: 4px;
}