  .blog-cover {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
  }

  .blog-meta {
    margin: 20px 0;
    font-size: 0.9rem;
    color: #777;
  }

  .blog-content {
    padding: 20px;
    border-radius: 8px;
    background-color: #ffffff;
    box-shadow: 0 4px 10px rgba(56, 47, 47, 0.05);
    line-height: 1.7;
  }

  .blog-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 15px 0;
    border-radius: 5px;
  }

  .post-actions {
    margin-top: 25px;
    display: flex;
    gap: 10px;
  }

  .comment-section {
    margin-top: 50px;
  }

  .share-buttons {
    margin-top: 40px;
    display: flex;
    gap: 15px;
    align-items: center;
  }

  .share-buttons i {
    font-size: 24px;
    cursor: pointer;
  }

  .share-buttons i:hover {
    color: #3498db;
  }

  
  /* comment section styles */
  .comment-form {
  background-color: #f8f9fa;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.comment-form h4 {
  font-weight: 600;
  margin-bottom: 20px;
  color: #343a40;
}

.comment-form textarea {
  resize: none;
  border: 1px solid #ced4da;
  border-radius: 6px;
  padding: 10px;
  font-size: 16px;
}

.comment-form button {
  margin-top: 10px;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 500;
}

.comment-list {
  margin-top: 40px;
}

.comment-list h5 {
  font-weight: 600;
  color: #495057;
}

.card.comment-card {
  border-left: 4px solid #0d6efd;
  transition: box-shadow 0.3s;
}

.card.comment-card:hover {
  box-shadow: 0 0 10px rgba(13, 110, 253, 0.2);
}

.card-body {
  padding: 15px 20px;
}

.card-subtitle {
  font-size: 14px;
  color: #6c757d;
}

.card-text {
  font-size: 16px;
  color: #212529;
  margin-top: 5px;
}

/* pagination styles */

  .pagination .active .page-link {
    background-color: #8CC63F !important;
    border-color: #8CC63F;
    color: white;
  }

  .page-link {
    color:white;
    border: none;
    margin: 0 3px;
    
  }



