/* --- BURBUJA DE COMENTARIOS --- */
.comment-bubble {
    position: relative;
    background: #f8fafc; /* Un gris muy muy suave */
    border-radius: 16px;
    border-bottom-left-radius: 2px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* --- ANIMACIONES --- */
.animate-fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}