﻿._navbar {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    height: 100%;
    user-select: none;
}

._navbar > a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #6a7282;
    font-weight: 500;
    height: 80%;
    width: 30%;
    transition: background .3s ease;
    border-radius: .625rem;
}

.bi::before, [class*=" bi-"]::before, [class^=bi-]::before {
    font-weight: 600 !important;
    font-size: 18px;
}

._navbar > a.active {
    background: #f0fdf4;
    color: #22c55e;
}

._navbar > a:not(.active):hover {
    background: #f9fafb;
}