/* Bottom Bar Styles for Mobile */
.bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  border-top: 1px solid #e0e0e0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px 0;
  z-index: 1000;
  box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
}

.bottom-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #666;
  font-size: 12px;
  transition: color 0.3s;
}

.bottom-item.active {
  color: #007bff;
}

.bottom-item i {
  font-size: 20px;
  margin-bottom: 4px;
}

.bottom-item span {
  font-size: 10px;
}

/* Hide on desktop */
@media (min-width: 768px) {
  .bottom-bar {
    display: none;
  }
}