.mobile-bottom-menu {
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: #fff;
  border-top: 1px solid #ccc;
  z-index: 9;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
}

.menu-item {
  flex: 1;
  text-align: center;
  font-size: 12px;
  color: #333;
  text-decoration: none;
  padding-top: 5px;
}

.menu-item .icon {
  display: block;
  font-size: 20px;
  margin-bottom: 2px;
}

.menu-item:hover {
  background-color: #f5f5f5;
  color: #000;
}