:root {
    --emboss: inset -1px -1px #0a0a0a, inset 2px 2px #fff, inset -2px -2px grey, inset 2px 2px #dfdfdf;
    --inverse-emboss: inset -1px -1px #fff, inset 2px 2px #0a0a0a, inset -2px -2px #dfdfdf, inset 2px 2px grey;
}

.window {
    font-family: Verdana;
    font-size: 11px;
}

.window {
    min-width: 180px;
    width: inherit;
    height: auto;
    padding: 4px;
    margin-bottom: 12px;
    border: none;
    background: silver;
	box-shadow: var(--emboss);
}

.window-title-bar {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    font-size: 11px;
    color: white;
    padding: 1px 2px 1px 6px;
    width: auto;
    height: 22px;
    align-items: center;
    background: linear-gradient(90deg, #000381, #247DB5)
}

.window-title-text {
    width: auto;
}

.window-client-area {
    color: black;
    margin: 12px;
}

.window-client-area ::selection {
  color: white;
  background-color: blue
}

.window-title-button {
    width: 18px;
    height: 18px;
    border: none;
    font-size: 11px;
    background: silver;
	box-shadow: var(--emboss);
}

.window-button {
    display: inline-block;
    padding: 6px 32px 6px 32px;
    border: none;
    font-size: 11px;
    background: silver;
	box-shadow: var(--emboss);
}

.window-button:active, .window-title-button:active {
    box-shadow: var(--inverse-emboss);
}