/* blog-comments.css */
.blog-comments {
    max-width: 800px;
    margin: 20px auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  }
  
  .comments-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
  }
  
  .comment-form {
    margin-bottom: 2rem;
  }
  
  .comment-textarea {
    width: 100%;
    min-height: 100px;
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.375rem;
    margin-bottom: 0.5rem;
    font-family: inherit;
    resize: vertical;
  }
  
  .comment-submit {
    background-color: #2563eb;
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.2s;
  }
  
  .comment-submit:hover {
    background-color: #1d4ed8;
  }
  
  .comment-list {
    list-style: none;
    padding: 0;
  }
  
  .comment-item {
    margin-bottom: 1rem;
    padding: 1rem;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  }
  
  .comment-header {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
  }
  
  .comment-author {
    font-weight: 600;
    color: #1a1a1a;
    margin-right: 0.5rem;
  }
  
  .comment-date {
    color: #6b7280;
    font-size: 0.875rem;
  }
  
  .comment-content {
    color: #4a5568;
    line-height: 1.5;
    margin-bottom: 0.5rem;
  }
  
  .comment-actions {
    display: flex;
    gap: 0.5rem;
  }
  
  .comment-reply-btn {
    background: none;
    border: none;
    color: #2563eb;
    font-size: 0.875rem;
    cursor: pointer;
    padding: 0;
  }
  
  .comment-reply-btn:hover {
    text-decoration: underline;
  }
  
  .comment-replies {
    margin-left: 2rem;
    margin-top: 1rem;
  }
  
  .reply-form {
    margin: 1rem 0;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 0.375rem;
  }
  
  .nested-1 { margin-left: 2rem; }
  .nested-2 { margin-left: 4rem; }
  .nested-3 { margin-left: 6rem; }
  
  @media (max-width: 720px) {
    .nested-1 { margin-left: 1rem; }
    .nested-2 { margin-left: 2rem; }
    .nested-3 { margin-left: 3rem; }
    .blog-comments { margin-left: 10px; margin-right: 10px;}
  }