.menu-bar li:hover {
  background: navy;
  color: white;
  text-decoration: underline;
}
/* Fonts and Basics */
body {
  background: #008080; /* Teal classic */
  font-family: 'Tahoma', sans-serif;
  color: black;
  margin: 20px;
}

.window {
  width: 600px;
  border: 2px solid #000;
  background-color: silver;
  box-shadow: inset -2px -2px #fff, inset 2px 2px #808080;
}

.title-bar {
  background: linear-gradient(to right, navy, #000080);
  color: white;
  padding: 4px 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  font-size: 14px;
}

.window-controls {
  display: flex;
  gap: 2px;
}

.control-button {
  width: 20px;
  height: 20px;
  background: silver;
  border: 2px outset #fff;
  font-size: 12px;
  line-height: 16px;
  padding: 0;
  text-align: center;
  cursor: pointer;
}

.control-button.close {
  color: red;
  font-weight: bold;
}

.window-body {
  padding: 12px;
  background: #c0c0c0;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #808080;
  border-right: 2px solid #808080;
}

.menu-bar {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0 0 10px 0;
  background: #e0e0e0;
  border: 1px solid #808080;
}

.menu-bar li {
  padding: 4px 12px;
  border-right: 1px solid #808080;
  cursor: pointer;
}

.menu-bar li:hover {
  background: navy;
  color: white;
}

.post {
  background: #ffffff;
  border: 2px inset #808080;
  padding: 10px;
  margin-bottom: 10px;
}

