.dialog-container {
	position: absolute;
	top: 0; left: 0;
	bottom: 0; right: 0;
	background-color: rgba(0,0,0,.5);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.dialog {
	width: 340px;
	min-height: 140px;
	max-height: 80vh;
	display: flex;
	flex-direction: column;
	background-color: var(--brand-1-a);
	border: 1px solid rgba(255,255,255,.2);
	border-radius: 6px;
	overflow: hidden;
}

.dialog .title {
	padding: 6px;
	border-bottom: 1px solid rgba(255,255,255,.2);
	font-size: 9pt;
	font-weight: bold;
	color: white;
}

.dialog .body {
	flex: 1;
	padding: 6px 1em;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	line-height: 1.4;
	gap: .5em;
	color: white;
}

.dialog .body>* {
	margin: 0;
	text-align: center;
}

.dialog .footer {
	border-top: 1px solid rgba(255,255,255,.2);
	padding: 6px;
	display: flex;
	justify-content: flex-end;
	gap: 1em;
}

.dialog .footer .button {
	border-radius: 4px;
	font-size: 9pt;
	padding: 4px;
	color: white;
	background-color: var(--brand-2-a);
	text-align: center;
	min-width: 60px;
	width: max-content;
	cursor: pointer;
}


.dialog .footer .button:hover {
	background-color: var(--brand-2-b);
}
