:root {
	--next-bg: #555577;
	--next-body: #aaaaaa;
	--next-light: #ffffff;
	--next-dark: #555555;
	--next-black: #000000;
}

body {
	background-color: var(--next-bg);
	margin: 0; padding: 10px;
	font-family: "DejaVu Sans", sans-serif;
	display: grid;
	grid-template-columns: 124px 1fr 90px;
	grid-template-areas: "menu main sidebar";
	gap: 15px;
	min-height: 100vh;
}

#menu {
grid-area: menu;
position: sticky;
top: 10px;
height: max-content;
background-color: var(--next-body);
border: 1px solid var(--next-black);
display: flex;
flex-direction: column;
}
.applications {
	background-color: var(--next-black);
	color: var(--next-light);
	font-size: 12px; font-weight: bold;
	text-align: center; padding: 2px 0;
}
.panel-entry {
	background-color: var(--next-body);
	border-top: 1px solid var(--next-light);
	border-left: 1px solid var(--next-light);
	border-right: 1px solid var(--next-dark);
	border-bottom: 1px solid var(--next-dark);
	padding: 6px 8px;
	font-size: 11px; font-weight: bold;
	color: var(--next-black);
	text-decoration: none;
	display: flex; justify-content: space-between;
}
.panel-entry.active { background: var(--next-black); color: var(--next-light); }

.main_content {
	grid-area: main;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.window {
	background-color: var(--next-body);
	border: 1px solid var(--next-black);
	box-shadow: 6px 6px 0px rgba(0,0,0,0.3);
	overflow: hidden;
}
.window > .title {
	background-color: var(--next-black);
	color: var(--next-light);
	text-align: center;
	font-size: 13px; font-weight: bold;
	height: 22px; line-height: 22px;
	position: relative;
}
.window > .title .close {
	position: absolute; left: 4px; top: 4px;
	width: 14px; height: 14px;
	background-color: var(--next-body);
	border: 1px solid var(--next-black);
	box-shadow: inset 1px 1px 0 var(--next-light);
}
.window-inner {
	background: #ffffff !important;
	padding: 20px;
	margin: 1px;
	border-top: 2px solid var(--next-dark);
	border-left: 2px solid var(--next-dark);
	border-right: 1px solid var(--next-light);
	border-bottom: 1px solid var(--next-light);
	line-height: 1.5;
	min-height: 400px;
	color: #000000;
}
.path-bar {
	background: var(--next-body);
	border-bottom: 1px solid var(--next-black);
	padding: 4px 10px;
	font-size: 11px; color: var(--next-dark);
	font-family: "DejaVu Sans Mono", monospace;
}
.resize-bar {
	height: 18px;
	background: var(--next-body);
	border-top: 1px solid var(--next-black);
	display: flex; justify-content: center; align-items: center; gap: 4px;
}
.dimple {
	width: 4px; height: 4px;
	background: var(--next-dark); border-radius: 50%;
	box-shadow: 1px 1px 0 var(--next-light);
}

.content.terminal {
	background-color: #000;
	color: #00ff00;
	padding: 8px;
	font-family: "DejaVu Sans Mono", monospace;
	font-size: 10px;
	line-height: 1.2;
}
.content.terminal a { color: #729FCF; text-decoration: none; }

.sidebar {
	grid-area: sidebar;
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: center;
}
.dock-tile {
	width: 64px; height: 64px;
	background: var(--next-body);
	border: 1px solid var(--next-black);
	border-top: 1px solid var(--next-light);
	border-left: 1px solid var(--next-light);
	border-right: 2px solid var(--next-dark);
	border-bottom: 2px solid var(--next-dark);
	display: flex; align-items: center; justify-content: center;
}

.window-pad {
	margin-top: 40px;
	opacity: 0.8;
	align-self: flex-start;
	width: 100%;
}

.panel-entry div {
	display: inline-block;
	max-width: 90px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.window-inner a {
	color: #0000ee;
	text-decoration: underline;
	background: transparent !important;
}

.main_content {
	grid-area: main;
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding-bottom: 50px;
}
