﻿.bottom-navbar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #1a212c;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-top: 1px solid #262f40;
    z-index: 20;
}

    .bottom-navbar a {
        text-decoration: none;
        color: #a2a5b9;
        text-align: center;
        font-size: .75rem;
        display: flex;
        flex-direction: column;
        height: 40px;
        justify-content: space-between;
        align-items: center
    }

        .bottom-navbar a i {
            display: block;
            font-size: 24px;
            margin-bottom: 4px;
        }

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