/* Center the comment button in the comments box */
#imhotep-comments {
  display: flex;
  flex-direction: column;
  align-items: center; /* centers children horizontally */
  justify-content: center; /* optional: centers vertically if height is set */
  margin-top: 20px;
  padding: 15px;
  border-top: 1px solid #3d0101;
  font-family: 'Georgia', serif;
  background-color: #f9f8f7;
  border-radius: 6px;
}

#imhotep-comments h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
  color: #3d0101;
}

#imhotep-comment-btn {
  padding: 10px 18px;
  margin-top: 10px; /* space under the title */
  font-size: 1rem;
  background-color: #3d0101;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

#imhotep-comment-btn:hover {
  background-color: #730101;
}