.mf-folder-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mf-folder {
    display: flex;
    align-items: center;
    gap: var(--mf-space-3);
    padding: 0 var(--mf-space-3);
    height: 36px;
    border-radius: var(--mf-radius);
    color: var(--mf-text-muted);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color var(--mf-transition), color var(--mf-transition);
    text-decoration: none;
}
.mf-folder:hover {
    background: var(--mf-surface-2);
    color: var(--mf-text);
    text-decoration: none;
}
.mf-folder--active {
    background: var(--mf-primary-subtle);
    color: var(--mf-primary);
    font-weight: 600;
}

.mf-folder__icon {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
}

.mf-folder__name {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mf-folder__count {
    font-size: 12px;
    color: var(--mf-text-subtle);
    font-weight: 500;
}

.mf-folder--active .mf-folder__count {
    color: var(--mf-primary);
}
