body {
  margin: 0;
  font-family: serif;
  background: #111;
  color: #eee;
}

.container {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 200px;
  background: #1a1a1a;
  padding: 1rem;
  border-right: 2px solid #3c3c3c;
}

.sidebar a {
  color: #c5a3ff;
  text-decoration: none;
  display: block;
  margin: 0.5rem 0;
}

.sidebar a:hover {
  text-decoration: underline;
}

.content {
  flex-grow: 1;
  padding: 2rem;
}

.sidebar input[type="text"] {
  width: 100%;
  padding: 0.5rem;
  margin-top: 0.5rem;
  background: #222;
  border: 1px solid #444;
  color: #eee;
}

#searchResults {
  margin-top: 0.5rem;
  list-style: none;
  padding-left: 0;
}

#searchResults li a {
  color: #c5a3ff;
  text-decoration: none;
}

#searchResults li a:hover {
  text-decoration: underline;
}

.sidebar ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.sidebar li {
  margin-bottom: 0.5rem;
}

.sidebar-about {
  font-size: 1rem;
  color: #aaa;
  margin-top: 2rem;
  border-top: 1px solid #333;
  padding-top: 1rem;
}

.sidebar-about a {
  color: #c5a3ff;
  text-decoration: none;
}

.sidebar-about a:hover {
  text-decoration: underline;
}

.profile-pic {
  width: 100%;
  max-width: 180px;
  height: auto;
  border-radius: 60%;
  display: block;
  margin-bottom: 1rem;
}

.nav-list {
    font-size: 2rem;
}

.nav-list a {
    font-size: 1.2rem;
}

h1 {
  text-align: center;
  color: #c5a3ff;
  padding-bottom: 1rem;
}

h2 {
  color: #c5a3ff;
}

.post-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.post-box {
  border: 1px solid #c5a3ff;
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1rem;
  background-color: #000;
  box-shadow: 0 0 10px rgba(29, 29, 29, 0.05);
  transition: transform 0.2s ease;
  font-size: 1.5rem;
}

.post-box:hover {
  transform: translateY(-2px);
  box-shadow: 4px 4px 10px rgba(0,0,0,0.1);
}

.post-summary {
  font-family: 'Menlo', serif;
}