:root {
	--color-accent: red;
	--color-onAccent: #fd5951;
	--color-primary: #b2c2c8;
	--color-secondary: #e1e6e8;
	--color-tertiary: #f0f2f2;
	--color-onPrimary: #213c40;
	--color-onSecondary: #122f32;
	--color-onTertiary: #032124;
	--color-background: white;
	--color-transparent: rgba(220, 220, 220, 0.5);
	--color-text-main: #333333;
	--color-text-secondary: #6c7a7d;  /* Средне-серый, гармонирует с onPrimary */
	--color-text-muted: #8b989c;  /* не активный */
	--box-shadow: 0 0 5px var(--color-secondary);
	--box-shadow-lite: 0 0 5px var(--color-tertiary);
	--box-shadow-contrast: 0 0 5px black;
	--border-radius: 5px;
}

html {
	user-select: none;
	font-size: 100%;
	color: var(--color-text-main);
	font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

body {
	margin: 0 auto;
}

main {	
	margin: 10px auto;
	min-height: 700px;
}

.message {
	position: fixed;
	z-index: 1000;
	top: 20%;
	min-height: 150px;
	box-shadow: 0px 0px 3px;
	border-radius: 5px;
	background-color: white;
	opacity: 0.9;
}

.messageText {
	display: block;
	margin-top: 50px;
	margin-left: 30px;
	margin-right: 30px;
	margin-bottom: 30px;
	text-align: center;
}

.message-actions-row {
	display: flex;
	justify-content: flex-end;
	width: 100%;
	padding: 10px;
	box-sizing: border-box;
}

.message-action-button {
	min-width: 40px;
	padding: 5px;
	margin: 5px;
	text-align: center;
	font-size: smaller;
	border-radius: var(--border-radius);
}

.message-action-button:hover {
	box-shadow: var(--box-shadow-contrast);
}