

body {
  background: #0b0b0b;
  color: #e6e6e6;
}

a {
  color: #8ab4ff;
}

.sidebar-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 100vh;
}

.sidebar {
  padding: 2rem 1.5rem;
  border-right: 1px solid #222;
}

.sidebar h1 {
  font-size: 1.2rem;
  letter-spacing: 0.04em;
}

.sidebar nav a {
  display: block;
  margin: 0.75rem 0;
}

.post-card {
  border-bottom: 1px solid #222;
  padding-bottom: 1.5rem;
}
#comment-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 500px;
}

#comment-form input,
#comment-form textarea {
  width: 100%;
  padding: 0.6rem;
  background: #111;
  border: 1px solid #333;
  color: #fff;
  border-radius: 4px;
}

#comment-form button {
  width: fit-content;
  padding: 0.6rem 1rem;
  background: #ff6a00;
  border: none;
  color: #000;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
}

#comment-form button:hover {
  opacity: 0.9;
}

.comment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
 
.comment-date {
  font-size: 0.85em;
  color: #666;
}

.comment-author {
  margin-bottom: 8px;
}
 
.comment-date {
  font-size: 0.85em;
  color: #666;
  margin-top: 2px;
}
