/* Hide display name */
.status__display-name .display-name bdi {
	display: none;
}

/* Give toots some breathing room */
.item-list article .status__wrapper .status .status__action-bar {
	margin-bottom: 16px;
}

/* Change font weight of username */
.status__display-name .display-name .display-name__account {
	font-weight: 700;
	font-size: 16px;
}

/* Change color of username in light theme */
.theme-mastodon-light .status__display-name .display-name .display-name__account {
	color: #000;
}

/* Change color of username in dark and high contrast theme */
.theme-default .status__display-name .display-name .display-name__account, .theme-contrast .status__display-name .display-name .display-name__account {
	color: #fff;
}

