.profile-header {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.badge-wrapper {
	position: relative;
	display: inline-block;
}
  
.badge {
	position: absolute;
	top: -4px;
	right: -16px;
	background: rgb(255, 0, 0);
	color: white;
	font-size: 10px;
	padding: 2px 4px;
	border-radius: 999px;
	box-shadow: 0 0 0 1px white;
	font-weight: bold;
	min-width: 20px;
	text-align: center;
	line-height: 1;
}
  
.avatar {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	margin-right: 6px;
}
  
.user-info h2 {
	margin: 0;
	font-size: 1.5em;
}
  
.user-info p {
	margin: 4px 0 0;
	color: #666;
}
.profile-list h3 {
	margin-bottom: 10px;
	font-size: 1.0em;
}
  
.profile-table {
	display: flex;
	flex-direction: column;
	gap: 6px;
}
  
.profile-header, .profile-row {
	display: grid;
	grid-template-columns: 1.0fr 1.0fr 1.6fr 1.6fr 0.6fr;
	padding: 6px 10px;
	border-radius: 4px;
	font-size: 0.8em;
}
  
.profile-header {
	background-color: #f0f0f0;
	font-weight: bold;
	font-size: 1.0em;
	color: #333;
	margin-bottom: 6px;
}
  
.profile-row {
	background-color: #fafafa;
	border: 1px solid #e5e5e5;
	margin-bottom: 2px;
}
  
.profile-row:hover {
	background-color: #f5faff;
}
.profile-row span:not(:last-child),
.profile-header span:not(:last-child) {
  border-right: 1px solid #ddd;
  padding-right: 12px;
  margin-right: 12px;
}