/* Bottom navigation styles */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    /* Background color */
    border-top: 1px solid #ddd;
    box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ac5180;
    /* border-top: 1px solid #ddd; */
    box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.1);
    z-index: 999;
    margin-bottom: 5px !important;
}

.bottom-nav ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
    margin: 0;
    padding: 5px 0;
}

.top-nav ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
    margin: 0;
    padding: 10px;
}

.bottom-nav ul li {
    flex: 1;
    text-align: center;
    padding-top: 10px;
}

.top-nav ul li {
    flex: 1;
    text-align: center;
}

.bottom-nav ul li a {
    text-decoration: none;
    color: #555;
    font-size: 12px;
}

.top-nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 15px;
    font-weight: bold;
}

.bottom-nav ul li a:hover,
.bottom-nav ul li.active a {
    color: #ac5180;
}

.bottom-nav ul li a i {
    font-size: 20px;
    margin-bottom: 0px;
    display: block;
}


.top-nav ul li a:hover,
.top-nav ul li.active a {
    color: black;
}

.top-nav ul li a i {
    font-size: 20px;
    margin-bottom: 0px;
    display: block;
}


@media screen and (min-width: 768px) {
    .bottom-nav {
        display: none;
    }
}

