.browse.list {
    background: var(--sectionBackground);
    margin: 0px 12px;
    padding: 12px;

    border-radius: 20px;
    corner-shape: squircle;
}

.browse.list .title {
    display: flex;
    flex-direction: row;
    align-items: center;

    padding: 0px 12px 12px 24px;
    gap: 12px;

    font-size: 12px;
    font-weight: 800;

    color: var(--toolbarText);
}

.browse.list .legend {
    width: 6px;
    height: 6px;
    background: var(--primaryAccent);
    border-radius: 100%;
}

.browse.list-wrapper {
    display: flex;
    flex-direction: column;

    width: 100%;
    gap: 6px;
}

.browse.list-item {
    display: block;
    font-size: 18px;
    font-weight: 500;
    padding: 12px 12px;
    border-radius: 16px;
    corner-shape: squircle;
    appearance: none;
    background: var(--toolbarButtonBackground);
    color: var(--toolbarText);
    font-family: inherit;
    text-align: inherit;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.025);
    transition: var(--primaryInteraction);
}

.browse.list-item:hover {
    background: var(--toolbarButtonBackground);
    color: var(--toolbarTextHover);
}
