body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #f5f6fa;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

/* Header */
.top-bar {
  background: #1b2a50;
  padding: 15px 0;
  color: white;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

.logo span {
  color: #4aa3ff;
}

.logo small {
  font-size: 12px;
  margin-left: 4px;
  color: #ccc;
}

nav a {
  color: #ddd;
  margin-left: 20px;
  text-decoration: none;
  font-size: 14px;
}

nav a:hover {
  color: #fff;
}

/* Breadcrumb */
.breadcrumb {
  margin: 20px 0 10px;
  font-size: 13px;
  color: #777;
}

/* Title and description */
.page-title {
  font-size: 22px;
  margin-bottom: 5px;
}

.description {
  color: #666;
  margin-bottom: 20px;
}

/* Forum Sections */
.section-title {
  background: #1b2a50;
  color: white;
  padding: 8px 12px;
  font-weight: bold;
  border-radius: 4px 4px 0 0;
  margin-top: 30px;
}

/* Threads */
.thread-row {
  background: white;
  padding: 15px;
  border-bottom: 1px solid #ddd;
}

.thread-row.sticky {
  background: #f9f9ff;
}

.thread-title {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 6px;
}

.thread-title a {
  color: #0056b3;
  text-decoration: none;
}

.thread-title a:hover {
  text-decoration: underline;
}

.thread-meta {
  font-size: 13px;
  color: #666;
}

.tag {
  display: inline-block;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 4px;
  margin-right: 6px;
  color: white;
}

.tag.red {
  background: #e74c3c;
}

.tag.blue {
  background: #3498db;
}
