/* AppBar Bottom CSS - Only for mobile */
.appbar-bottom {
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1200;
    background: #23272f;
    box-shadow: 0 -2px 16px rgba(37, 99, 235, 0.10);
    height: 56px;
    border-top: 2px solid #2563eb22;
}

.appbar-bottom a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    flex: 1;
    height: 100%;
    justify-content: center;
    transition: color .2s;
}

.appbar-bottom a.active,
.appbar-bottom a:hover {
    color: #2563eb;
}

.appbar-bottom svg {
    display: block;
    margin: 0 auto 2px auto;
    font-size: 22px;
    width: 22px;
    height: 22px;
}

@media (min-width: 700px) {
    .appbar-bottom {
        display: none !important;
    }
}

@media (max-width: 699px) {
    .appbar-bottom {
        display: flex;
    }
}