.recent-threads-container {
  background: #f8f8f8;          /* Light gray background */
  border: 1px solid #ccc;       /* Thin border around container */
  border-radius: 6px;           /* Rounded corners */
  padding: 10px;                /* Padding inside container */
  max-width: 100%;              /* Adjust to your layout */
}

.recent-threads-header {
  background: #2c3e50;          /* Dark header color */
  color: #fff;                  /* White text */
  padding: 8px 10px;            /* Space inside header */
  font-weight: bold;
  font-size: 16px;
  border-radius: 4px 4px 0 0;  /* Rounded top corners only */
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.recent-thread-item {
  padding: 8px 10px;            /* Space around each thread */
  border-bottom: 1px solid #ddd;/* Divider line */
}

.recent-thread-item:last-child {
  border-bottom: none;          /* Remove line for last item */
}

.recent-thread-item a {
  font-weight: 500;
  text-decoration: none;
  color: #333;
}

.thread-meta {
  display: block;
  font-size: 12px;
  color: #666;
  margin-top: 2px;
}

.recent-threads-pagination {
  margin-top: 10px;
  text-align: center;
}