/* Basic page setup */
body {
  margin: 0;
  padding: 0;
  font-family: Georgia, serif;
  background-color: #251605;
  color: #D7C9AA;
}

/* Header across the top */
#header {
  background-color: #19535F;
  padding: 20px;
  text-align: center;
  border-bottom: 3px solid #C9A84C;
}

#header h1 {
  color: #D7C9AA;
  margin: 0;
}

/* Container */
#container {
  display: flex;
  flex-direction: row;
}

/* Sidebar on the left */
#sidebar {
  width: 150px;
  background-color: #0B7A75;
  padding: 20px;
  min-height: 100vh;
  border-right: 2px solid #C9A84C;
}

/* Sidebar list styling */
#sidebar ul {
  list-style: none;
  padding: 0;
}

#sidebar li {
  margin-bottom: 15px;
}

#sidebar a {
  text-decoration: none;
  color: #C9A84C;
  font-weight: bold;
}

#sidebar a:hover {
  color: #D7C9AA;
}

/* Main content area */
#main {
  flex: 1;
  padding: 30px;
}

/* Footer */
#footer {
  background-color: #19535F;
  text-align: center;
  padding: 10px;
  border-top: 3px solid #C9A84C;
  color: #D7C9AA;
}