/* Base styles from user's original code */
.mobile-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-around;
  z-index: 9999;
  padding: 8px 0;
  box-shadow: 0 -2px 5px rgba(0,0,0,0.05);
  box-sizing: border-box; /* Add this for better border handling */
}
.mobile-bottom-bar a {
  flex: 1;
  text-align: center;
  font-size: 11px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.mobile-bottom-bar i {
  font-size: 20px;
  display: block;
  margin-bottom: 3px;
}
.mobile-bottom-bar span {
  display: block;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .mobile-bottom-bar {
    display: none;
  }
}

/*
 * Kiểu cho nút menu active
 */

/* Thay đổi màu chữ và biểu tượng của nút đang active */
.mobile-bottom-bar a.mfm-active span,
.mobile-bottom-bar a.mfm-active i {
    color: #007bff; /* Thay bằng màu bạn muốn, ví dụ màu xanh dương */
    font-weight: bold; /* Làm chữ đậm hơn */
}

/* Hoặc bạn có thể thêm màu nền cho nút active */
 .mobile-bottom-bar a.mfm-active {
    background-color: #f0f0f0; /* Màu nền xám nhạt */
    border-radius: 8px;
} 