Scoreboard
{
	position: absolute;
	justify-content: center;
	align-items: center;
	font-family: Roboto;
	font-size: 22px;
	color: #fff;
	opacity: 0;
	transform: scale( 0.8 );
	transition: all 0.1s ease-in;
	margin: auto;
	width: 100%;
	height: 100%;
	margin: auto;
	gap: 16px;

	.voting
	{
		width: 20%;
	}

	.title
	{
		width: 100%;
		height: 64px;
		background-color: rgba( black, 0.2 );
		justify-content: center;
		align-items: center;
		flex-direction: column;

		> .small
		{
			font-size: 16px;
		}
	}

	.avatar
	{
		margin-left: 4px;
		width: 24px;
		height: 24px;
		border: 0.2px solid black;
		box-shadow: 1px 1px 10px rgba( black, 0.5 );
	}

	.table
	{
		flex-direction: column;
		width: 600px;
		background-color: #000a;
		border: 0.5px solid #d7b35bff;
		color: #d7b35b;
		border-radius: 2px;
		min-height: 600px;
		min-width: 800px;
		backdrop-filter: blur( 3px );
		box-shadow: 1px 1px 10px rgba( black, 0.5 );

		.header
		{
			padding: 8px 0px 8px 0px;
			opacity: 0.3;
		}

		.center label
		{
			flex-grow: 1;
			text-align: center;
		}

		.header
		{
			> .stat
			{
				font-size: 16px;
			}
		}

		.row
		{
			white-space: nowrap;
			align-items: center;
			height: 32px;
			cursor: pointer;

			> .name
			{
				flex-grow: 1;
			}

			> .stat
			{
				width: 100px;
				justify-content: flex-end;
				text-transform: lowercase;
			}

			> *
			{
				padding: 0px 8px;
			}
		}

		.me
		{
			color: #fff;
			background-image: linear-gradient( to right, #d7b35b88, #d7b35b33 );
			cursor: default;
		}
	}

	&.visible
	{
		opacity: 1.0;
		transform: scale( 1 );
		transition: all 0.1s ease-out;
	}

	&.interact
	{
		pointer-events: all;
	}
}

.popup-panel {
	background-color: rgba( black, 0.8 );
	color: white;
	display: flex;
	flex-direction: column;
	gap: 4px;
	border-radius: 4px;
	font-family: Poppins;
	font-size: 16px;

	.button {
		cursor: pointer;
		gap: 16px;
		margin: 8px;
		color: white;
		align-items: center;

		&:hover {
			color: #d7b35bff;
		}
	}
}
