/* react comments style */

/* Yorum Fade Animasyonu */
.animated-comment {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
}

.animated-comment.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.fade {
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.fade.show {
    opacity: 1;
}



.social-buttons {
    display: flex;
    gap: 10px;
}

.social-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-button:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.facebook {
    background-color: #3b5998;
}

.twitter {
    background-color: #040404;
}

.linkedin {
    background-color: #0077b5;
}

.whatsapp {
    background-color: #25d366;
}

.telegram {
    background-color: #0088cc;
}