nav ul {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    color: white;
    width: 25px;
    background: rgba(116, 116, 116, 0.15);
    border: 1px solid rgba(255,255, 255, 0.08);
    border-radius: 20px;
    height: fit-content;
    padding: 15px;
    text-align: center;
    gap: 6px;
    position: fixed;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}

nav ul li {
    padding: 15px;
    text-align: center;
    width: 50%;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 15px;
    transition: 0.2s;
    height: 10px;
}

nav ul li i {
    position: relative;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -60%);
}

nav ul li:hover {
    background: rgba(255, 255, 255, 0.2);
}

nav ul li.active {
    background: white;
    color: black;
}

nav ul li.divider {
    height: 1px;
    padding: 0;
    width: 100%;
    background: rgba(255,255, 255, 0.2);
}