/* topic-box.php için Stiller */

.topic-card {
    position: relative;
    padding-bottom: 30px; /* Buton için altta boşluk */
    /* Diğer topic-card stilleriniz main.css'de olabilir */
}

.expert-badge {
    /* Bu üç satır hizalama işlemini yapar */
    display: flex;
    align-items: center;
    gap: 8px; /* İkon ile metin arasına boşluk koyar */

    /* Metnin ve ikonun genel stilini buradan yönetebilirsiniz */
    font-weight: bold;
    color: #27ae60; /* Örnek bir renk */
    font-size: 14px;
}

.expert-badge img {
    /* Resmin boyutunu buradan kontrol edin */
    height: 24px;
    width: 24px;
}

.topic-title a {
    text-decoration: none;
    color: #333;
    transition: color 0.2s ease;
}

.topic-title a:hover {
    color: #3498db;
}

.topic-user {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
}

.avatar-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #3498db;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 20px;
  flex-shrink: 0;
}

.user-info {
    display: flex;
    flex-direction: column;
}

.user-name {
    display: flex;
    align-items: center;
    gap: 8px; /* Daha belirgin boşluk */
    flex-wrap: wrap;
}

.user-name-text {
    font-weight: bold;
    color: #000;
    font-size: 15px;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #3498db;
    font-weight: bold;
    text-decoration: none;
    font-size: 14px;
}

.category-icon {
    width: 16px;
    height: 16px;
}

.user-meta {
    font-size: 13px;
    color: #777;
    margin-top: 2px;
}

.topic-content {
    color: #555;
    line-height: 1.6;
}

.stats {
    display: flex;
    gap: 15px;
    align-items: center;
    font-size: 13px;
    color: #666;
    margin-top: 15px;
}

.stats .icon {
    height: 16px;
    vertical-align: middle;
    margin-right: 4px;
}

.comments-meta strong {
    color: #333;
}

.actions {
    margin-top: 15px;
    text-align: right;
}

.btn-incele {
    display: inline-block;
    padding: 8px 16px;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: background-color 0.2s ease;
}

.btn-incele:hover {
    background-color: #2980b9;
}
