/* Yorum Sistemi Stilleri */
.yorumlar-bolumu {
    margin-top: 30px;
    border-top: 1px solid #ddd;
    padding-top: 20px;
}

.yorum-ekle-form {
    margin-bottom: 20px;
}

.yorumlar-listesi {
    margin-top: 20px;
}

.yorum-item {
    padding: 15px;
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
    transition: background-color 0.3s ease;
}

.yorum-item:hover {
    background-color: #f9f9f9;
}

.yorum-header {
    margin-bottom: 10px;
}

.yorum-header img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 5px;
}

.yorum-header span {
    color: #999;
    font-size: 12px;
    margin-left: 10px;
}

.yorum-icerik {
    margin-bottom: 10px;
    line-height: 1.6;
}

.yorum-begen {
    transition: all 0.3s ease;
}

.yorum-begen:hover {
    transform: scale(1.1);
}

.yorum-sil {
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.yorum-item:hover .yorum-sil {
    opacity: 1;
}

.begeni-sayisi {
    margin-left: 5px;
}