/* Genel form ve yorum alanı stilleri */
.bce-comment-form,
.bce-comment-list .comment {
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #e0e0e0;
    padding: 1em;
    margin-bottom: 1em;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.logged-in-as {
	display:none;
	
}
.comment-reply-title {
	display:none;
	
}

.title-comments {
	display:none;
	
}

/* Avatar orta boy (64x64px) */
.bce-comment-avatar img {
    margin-top: 10px;
    width: 58px;
    height: 58px;
    object-fit: cover;
    float: left;
    margin-right: 1em;
	margin-left: 1em;
    border-radius: 50%;
}


/* Kullanıcı adı ve yorum metni */
.bce-comment-author {
	padding-top:10px;
    font-weight: bold;
    margin-bottom: 0.5em;
}
.bce-comment-text {
    margin: 0.5em 0;
    line-height: 1.5;
}

/* Like/Dislike ve Silme butonları */
.bce-comment-actions {
    margin-top: 0.5em;
    display: flex;
    gap: 1em;
}
.bce-like-btn,
.bce-dislike-btn,
.bce-delete-btn {
	margin-top: 10px;
	margin-bottom: 10px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-weight: bold;
    color: #000000 !important;
}
.bce-like-btn:hover,
.bce-dislike-btn:hover,
.bce-delete-btn:hover {
    background-color: #000000;
    color: #ffffff !important;
}

/* Tüm yorumlar ve yanıtlar için beyaz arkaplan ve siyah metin */
.bce-comment-item {
    background-color: #ffffff;
    color: #000000;
}
/* Yazar adı ve yorum metni özellikle siyah olsun */
.bce-comment-item .bce-comment-author,
.bce-comment-item .bce-comment-text {
	margin-left:70px;
    color: #000000;
}
/* Alt yorumlar (replies) */
.bce-comment-item .children .bce-comment-item {
    background-color: #ffffff;
    color: #000000;
}

/* Form ve yorum listesini aynı genişlikte, ortalanmış hale getir */
.bce-comment-form,
.bce-comment-list {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Yorum öğelerinin form genişliğini kullanması */
.bce-comment-item {
    width: 500px;
    box-sizing: border-box;
}

/* Yorumlar ve reply alanlarına 20px sağ–sol dolgu */
.bce-comment-item,
.bce-comment-item .children .bce-comment-item {
    padding-left: 20px;
    padding-right: 20px;
}

/* Yorum ve yanıt blokları arasında boşluk ve yuvarlak köşeler */
.bce-comment-item,
.bce-comment-item .children .bce-comment-item {
    margin-bottom: 20px;
    border-radius: 10px;
    background-clip: padding-box;
}

/* Comment form label’ını kalın, ortalanmış ve alt boşluklu yap */
.comment-form-comment label {
    display: block;
    font-weight: bold;
    text-align: center;
    margin-bottom: 5px;
}

/* Submit butonunu ortala ve renkleri ayarla */
.bce-comment-form .form-submit {
    text-align: center;
}
.bce-comment-form .form-submit input[type="submit"] {
    background-color: #000000;
    color: #ffffff;
    border: none;
    padding: 0.5em 1em;
    cursor: pointer;
    /* hover efekti istemiyorsanız: */
}
