 
 .bottom-menu {
  
    border-radius: 5px;
    position: fixed;
    bottom: 5px;
    left: 15px;
    right: 15px;
    height: 55px;
    background: var(--app-color2) ;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border: 1px solid #ffffff;
    box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.05);
    z-index: 999;
}

.bottom-menu-btn {
    height: 100%;
    width: 20%;
    background: none;
    border: none;
    font: inherit;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 10px;
    cursor: pointer;
    justify-content: center;
    align-content: center;
}
.bottom-menu-btn-active{
 background: var(--app-color1) ;   
}
 

.bottom-menu-btn:hover {
  outline: none;
 background: var(--app-color1) ; 
  filter: brightness(0.9); /* 0.9 = 10% darker */
}
.bottom-menu-btn:first-child:hover{
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.bottom-menu-btn:last-child:hover {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.bottom-menu-btn:first-child.bottom-menu-btn-active {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.bottom-menu-btn:last-child.bottom-menu-btn-active {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.bottom_menu_icon {
    height: 25px;
    --tblr-icon-size: 1.5rem;
}
 