* {
    margin: 0;
    padding: 0;
    border: 0;
  }

  .navbar-phone {
    position: fixed;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
    padding: 10px 0;
    background: white;
    border-radius: 30px 30px 0 0;
    box-shadow: 0px -5px 10px #888888;
    width: 90%;
    height: 15%;
    margin-left: 2%;
    z-index: 99;
  }

  .navbar-phone a {
    cursor: pointer;
    width: 60px;
    height: 50px;
    border-radius: 20px;
    background: transparent;
    transition: all .25s ease;
    color: black;
  }

  .navbar-phone a:active:not(.plus) {
    transform: scale(1.2);
  }

  .navbar-phone a.active {
    color: #1f2b7b;
  }

  .navbar-phone a i {
    font-size: 2rem;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
  }

  .navbar-phone a.plus {
    height: 60px;
    color: #fff;
    background: #e84c4f;
    border-radius: 25px;
    margin-top: -50px;
    box-shadow: 0 10px 20px 0 #e84c4f66;
  }

  .navbar-phone a.plus:hover {
    transform: translateY(-4px);
  }

  .navbar-phone .effect {
    position: absolute;
    width: 60px;
    height: 50px;
    border-radius: 18px;
    background: #e84c4f26;
    opacity: 0;
  }

  .overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 999;
  }

  .overlay.active {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .menu-container {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    max-width: 100%;
    max-height: 100%;
    overflow: auto;
    width: 100%;
    height: 100%;
  }

  .close-icon {
    text-align: right;
    margin-bottom: 10px;
  }

  .close-icon i {
    font-size: 24px;
    cursor: pointer;
  }

  .menu-items {
    list-style-type: none;
    padding: 0;
  }

  .menu-items li {
    height: 50px;
    display: flex;
    align-items: center; /* Center vertically */
}

.menu-items a {
    margin-bottom: 10px;
    font-size: 18px;
    color: black;
    text-decoration: none;
}

  .for-centered-purpose{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
  }

  .btn-mobile{
    margin: auto;
    width: 80%;
  }

  .btn-mobile-logout{
    margin: auto;
    width: 100%;
  }


