.standalone-sidebar > .sidebar-items {
    overflow: hidden;
    display: grid;
    row-gap: .5rem;
    color: black;
    border-radius: var(--border-radius);
    border: var(--border-default);
}

.standalone-sidebar > .sidebar-items * {
    width: 100%;
}

.standalone-sidebar > .sidebar-items > a {
    color: black;
    transition: background-color .1s linear;
    padding: .5rem;
}


.standalone-sidebar > .sidebar-items > a:hover {
    background-color: var(--background-white-hover);
}