/* Bottom Navigation Custom Styles */
.bottom-nav {
  background-color: #0c1624;
  padding: 10px 5px;
}

.bottom-nav .navbar-nav {
  width: 100%;
  justify-content: space-between;
}

.bottom-nav .nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.85rem;
  color: #ffffff;
  padding: 8px 5px;
  transition: all 0.3s ease;
}

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

.bottom-nav .menu-icon {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.bottom-nav .fs-11 {
  white-space: nowrap;
  font-size: 0.7rem;
}

/* Make the bottom navigation responsive */
@media (max-width: 576px) {
  .bottom-nav .navbar-nav {
    overflow-x: auto;
    padding: 0 5px;
    justify-content: flex-start;
  }

  .bottom-nav .nav-item {
    min-width: 60px;
    padding: 8px 2px;
  }

  .bottom-nav .menu-icon {
    font-size: 1rem;
  }
}
