body {
  background: #008080; /* Classic Win95 teal desktop */
  font-family: "MS Sans Serif", "Tahoma", "Geneva", "sans-serif";
  font-size: 16px;
}

a {
  color: #0000ff;
}

/* The main application window */
.window {
  max-width: 960px;
  margin: 30px auto;
  box-shadow: 1px 1px 10px rgba(0,0,0,0.5);
  border: 2px solid;
  border-color: #dfdfdf #000 #000 #dfdfdf;
  background: #c0c0c0;
}

.title-bar {
  background: linear-gradient(to right, #000080, #1084d0);
  padding: 3px 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.title-bar-text {
  color: white;
  font-weight: bold;
  letter-spacing: 1px;
}

.title-bar-controls button {
  height: 14px;
  width: 16px;
  background-color: #c0c0c0;
  border: 1px solid;
  border-color: #dfdfdf #404040 #404040 #dfdfdf;
  padding: 0;
  margin-left: 3px;
}

.window-body {
  padding: 15px;
}

/* Content wrapper inside the window */
.content {
  margin: 10px 0;
}

/* Style for individual nodes/articles */
article {
  background: #fff;
  border: 2px solid;
  border-color: #808080 #fff #fff #808080;
  padding: 15px;
  margin-bottom: 15px;
}

h1.page-title {
  font-size: 1.5em;
  color: #000;
  margin: 0 0 10px 0;
}

/* General button style */
button, input[type="submit"] {
  background-color: #c0c0c0;
  border: 2px outset;
  border-color: #dfdfdf #000 #000 #dfdfdf;
  padding: 5px 15px;
  font-family: "MS Sans Serif", "Tahoma", "Geneva", "sans-serif";
}

button:active, input[type="submit"]:active {
  border-style: inset;
}

/* Horizontal separator */
hr {
  border: 0;
  height: 2px;
  border-top: 1px solid #808080;
  border-bottom: 1px solid #fff;
  margin: 10px 0;
}

img {
  max-width: 100%;
  height: auto;
}

/* Style for preformatted text and code blocks */
pre {
  background: #fff;
  border: 2px solid;
  border-color: #808080 #fff #fff #808080; /* Inset border */
  padding: 10px;
  font-family: "Courier New", "Courier", monospace;
  white-space: pre-wrap;       /* Allows text to wrap */
  word-wrap: break-word;       /* Breaks long words */
  overflow-x: auto;            /* Adds scrollbar if still needed */
}
