.comments {
    margin-top: 2rem;
    padding: 1rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  }
  
  .comments h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.5rem;
  }
  
  .comment-entry {
    margin-bottom: 1rem;
  }
  
  .comment-entry p {
    margin: 0.3rem 0;
  }
  
  .comment-entry strong {
    color: #2c3e50;
  }
  
  .comment-form textarea {
    width: 100%;
    padding: 0.5rem;
    border-radius: 4px;
    border: 1px solid #ccc;
    margin-bottom: 0.5rem;
    resize: vertical;
    font-family: inherit;
  }
  
  .comment-form button {
    background-color: #2c3e50;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
  }
  
  .comment-form button:hover {
    background-color: #34495e;
  }
  