body {
	padding: 1rem;
	color: white;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	height: 100vh;
	overflow: hidden;
}

.lobby-code {
	font-size: 3rem;
	background: white;
	color: #8e44ad;
	padding: 1rem 2rem;
	border-radius: 1rem;
	margin-bottom: 1rem;
}

.players-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 2rem;
	max-width: 80vw;
	margin-bottom: 1rem;
}

.player {
	background: white;
	color: black;
	padding: 1rem;
	border-radius: 1rem;
	text-align: center;
	width: 90px;
	height: 110px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.player img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 1rem;
	margin-bottom: 0.5rem;
}

.lobby-info-display {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	column-gap: 1rem;
	margin-bottom: 1rem;
}
