.bottom-nav {
  position: fixed;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 170px;
  height: 56px;
  background-color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 6px;
  border-radius: 8px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.nav-item {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: none;
  background: transparent;
  transition: all 0.3s ease;
  background-color: #f1f1f1;
  height: 48px;
  width: 48px;
  border-radius: 8px;
}

.nav-item svg {
  width: 24px;
  height: 24px;
}

.nav-item.active {
  background-color: #e2fd34;
  border-radius: 8px;
}

.nav-item.active svg {
}

.nav-item:hover:not(.active) {
  background-color: #f0f0f0;
  border-radius: 12px;
}
