button {
	box-sizing: border-box;
	min-width: 75px;
	min-height: 23px;
	padding: 0 12px;
	border: 1px solid #003c74;
	border-radius: 3px;
	background: linear-gradient(180deg, #fff, #ecebe5 86%, #d8d0c4);
	box-shadow: none;
	font: 11px Tahoma, Arial, sans-serif;
}

button:not(:disabled):active {
	background: linear-gradient(180deg, #cdcac3, #e3e3db 8%, #e5e5de 94%, #f2f2f1);
}

button:not(:disabled):hover {
	box-shadow: inset -1px 1px #fff0cf, inset 1px 2px #fdd889, inset -2px 2px #fbc761, inset 2px -2px #e5a01a;
}

button:focus {
	box-shadow: inset -1px 1px #cee7ff, inset 1px 2px #98b8ea, inset -2px 2px #bcd4f6, inset 1px -1px #89ade4, inset 2px -2px #89ade4;
}

.window {
	padding: 0 0 3px;
	border-radius: 8px 8px 0 0;
	background: #ece9d8;
	box-shadow: inset -1px -1px #00138c, inset 1px 1px #0831d9, inset -2px -2px #001ea0, inset 2px 2px #166aee, inset -3px -3px #003bda, inset 3px 3px #0855dd;
	font-size: 11px;
	-webkit-font-smoothing: antialiased;
}

.title-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 27px;
	padding: 3px 5px 3px 3px;
	border: 1px solid #0831d9;
	border-bottom: 0;
	border-radius: 8px 7px 0 0;
	background: linear-gradient(180deg, #0997ff, #0053ee 8%, #0050ee 40%, #06f 88%, #005bff 95%, #003dd7 96%);
	font: 13px "Trebuchet MS", Tahoma, sans-serif;
	text-shadow: 1px 1px #0f1089;
}

.title-bar-text {
	padding-left: 3px;
	color: #fff;
	font-weight: 700;
}

.title-bar-controls {
	display: flex;
}

.title-bar-controls button {
	display: grid;
	place-items: center;
	min-width: 21px;
	min-height: 21px;
	margin-left: 2px;
	padding: 0;
	border: 1px solid #fff;
	border-radius: 3px;
	background: linear-gradient(135deg, #f59b8e, #e13920 55%, #a51c0b);
	box-shadow: inset 1px 1px #ffb7ad, inset -1px -1px #7d1609;
}

.title-bar-controls button::before {
	color: #fff;
	content: "×";
	font: 700 19px/16px Arial, sans-serif;
	text-shadow: 1px 1px #7d1609;
}

.title-bar-controls button:focus,
.title-bar-controls button:hover,
.title-bar-controls button:active {
	box-shadow: inset 1px 1px #ffd0c9, inset -1px -1px #7d1609;
}

.window-body {
	margin: 8px;
}
