/* Forum Specific Styles */

/* Avatar circles for comments */
.avatar-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* Comment thread styling */
.comment {
  padding: 15px;
  border-radius: 8px;
  background-color: #f8f9fa;
  margin-bottom: 20px;
}

.reply {
  border-color: #dee2e6 !important;
}

/* Post content formatting */
.post-content {
  white-space: pre-line;
}

/* Container for the forum pages */
.forum-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Styling for post status indicators */
.status-pinned {
  color: #ffc107;
}

.status-locked {
  color: #6c757d;
}

/* Category card styling */
.category-card {
  transition: all 0.2s ease;
}

.category-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Responsive comment layout */
@media (max-width: 768px) {
  .comment .d-flex {
    flex-direction: column;
  }
  
  .comment .me-3 {
    margin-right: 0 !important;
    margin-bottom: 0.5rem;
  }
}