/* Forum Block */
.forumblock {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  margin-bottom: 20px;
  background: #fff;
}

.forum-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.forum-header .expcolimage img {
  width: 20px;
  height: 20px;
  opacity: 0.6;
  transition: 0.3s;
}

.forum-header .expcolimage img:hover {
  opacity: 1;
  transform: scale(1.1);
}

.forum-title a {
  font-size: 16px;
  color: #2c3e50;
  text-decoration: none;
}

.forum-title a:hover {
  color: #3498db;
}

.forum-desc {
  font-size: 12px;
  color: #7f8c8d;
  margin-top: 3px;
}

/* Head Row */
.forum-head-row td {
  background: #f4f6f9;
  color: #444;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Sub-forum satırları */
.forum-row {
  background: #fff;
  border-bottom: 1px solid #eee;
  transition: background 0.3s;
}

.forum-row:hover {
  background: #f9fcff;
}

.forum-lastpost {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  text-align: left;
}

.forum-lastpost img {
  border-radius: 50%;
  width: 28px;
  height: 28px;
}

.forum-lastpost .lastpost-info {
  font-size: 11px;
  color: #555;
}

.forum-lastpost .lastpost-info a {
  color: #2980b9;
  font-weight: bold;
  text-decoration: none;
}











/* Alt Forumlar (Subforum Block) */
.subforum-block {
  background: #fafafa;
  border-bottom: 1px solid #eee;
  padding: 10px 15px;
}

.subforum-wrapper {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.subforum-title a {
  font-size: 14px;
  font-weight: 600;
  color: #34495e;
  text-decoration: none;
  transition: 0.3s;
}

.subforum-title a:hover {
  color: #3498db;
}

.subforum-desc {
  font-size: 12px;
  color: #7f8c8d;
}

/* Daha kutucuk görünümü isteyenler için */
.subforum-block:hover {
  background: #f5faff;
}
