#room-list-title {
	text-align: center;
	font-size: 2rem;
	margin:1rem;
}

#room-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
}


.room-card {
	background-color: #333;
	border: 1px solid #eee;
	width: 300px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	cursor: pointer;
	gap:0.5rem;
}

.room-card .room-name {
	margin-top: 1rem;
	margin-bottom: 1rem;
	font-size: 1.5em;
	cursor: pointer;
}

.room-card .avatar-container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 3px;
}


.room-card .avatar-container .microvatar {
	width: 2rem;min-width:2rem;max-width: 2rem;
	height: 2rem;min-height: 2rem;max-height: 2rem;
	border-radius: 5px;
	display: flex;
	flex: 1;
	align-items: center;
	justify-content: center;
	font-size: 1em;
	font-weight: bold;
	text-transform: uppercase;
	background-color: #555;
	color: #eee;
}

.room-card .avatar-container .avatar span {
	pointer-events: none;
}


.room-card .avatar-container .user-count {
	top: -10px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 0.8em;
	font-weight: bold;
	color: #aaa;
}

.room-card .play-info {
	text-align: center;
	font-size: 0.9rem;
	padding: 0.5rem;
	display: inline-flex;
	flex-direction: column;
	width: 100%;
}


.room-card .play-info .play-info-titles {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.room-card.add-room {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2em;
	font-weight: bold;
	color: #aaa;
}
