.mobile-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }
  .bottom-bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333;
    position: relative;
    padding: 5px 0;
    width: 20%;
    transition: all 0.3s ease;
  }
  .bottom-bar-item i {
    font-size: 1.3em;
    margin-bottom: 2px;
  }
  .bottom-bar-item span {
    font-size: 0.65em;
  }
  .bottom-bar-login {
    background: linear-gradient(45deg, #084, #00ac8c);
    color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: -30px;
    box-shadow: 0 4px 10px rgba(0, 136, 68, 0.3);
    transition: all 0.3s ease;
  }
  .bottom-bar-login i {
    font-size: 1.8em;
    margin-bottom: 2px;
  }
  .bottom-bar-login span {
    font-size: 0.7em;
    font-weight: 700;
  }
  .bottom-bar-item.active,
  .bottom-bar-item:hover {
    color: #084;
  }
  .bottom-bar-item:active,
  .bottom-bar-login.active,
  .bottom-bar-login:hover {
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 2px 5px rgba(0, 136, 68, 0.4);
  }
  .bottom-bar-item::before {
    display: none;
  }
  .mobile-bottom-bar {
    padding-top: 5px;
  }
  .bottom-bar-item:not(.bottom-bar-login) {
    margin-top: 10px;
  }
