/* "Popup.css" */

#scorePopup {
	/* start hidden */
	display: none;

	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: rgba(34, 34, 34, 0.8);
	color: rgba(238, 238, 238, 1.0);
	font-family: monospace;
	padding: 20px 30px;
	border: 2px solid rgba(255, 255, 255, 1.0);
	border-radius: 10px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 1.0);
	z-index: 9999;
	white-space: normal;
	min-width: 90vw;
	min-height: 70vh;
	max-width: 90vw;
	max-height: 70vh;
	overflow: auto;

	/* flex properties apply once shown via JS */
	flex-direction: column;
	justify-content: space-between;
}

#scoreContent {
	white-space: pre-wrap;
	word-break: break-word;
	font-family: monospace;
	flex: 1 1 auto;
	overflow-y: auto;
}

#scorePopup button {
	margin-top: 20px;
	padding: 8px 16px;
	align-self: center;
	font-weight: bold;
	border: none;
	background: rgba(68, 68, 68, 1.0);
	color: rgba(255, 255, 255, 1.0);
	border-radius: 6px;
	cursor: pointer;
}