.bottom-tab-menu {
    width: 100%;
    position: fixed;
    bottom: 0;
    background-color: #333;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.bottom-tab-menu .tab-menu {
    display: flex;
    justify-content: space-around;
    list-style: none;
    padding: 10px 0;
    margin: 0;
}

.bottom-tab-menu .tab-menu li {
    flex: 1;
}

.bottom-tab-menu .tab-menu li a {
    color: white;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 14px;
}

.bottom-tab-menu .tab-menu li a i {
    font-size: 24px;
    margin-bottom: 5px;
}

.bottom-tab-menu .tab-menu li a span {
    font-size: 12px;
}

@media (min-width: 769px) {
    .bottom-tab-menu {
        display: none;
    }
}
